aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbinding.rs
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-12-06 18:36:07 +0100
committerGitHub <noreply@github.com>2023-12-06 17:36:07 +0000
commit7e82c5c957821f1328484e90becec0cfb5572938 (patch)
treeaa4d6d8381565199e7173b5f3828ba1c26337f14 /components/script/dom/testbinding.rs
parent9c443cf2c1bbcee1f465cc76b7bf1ab551b85877 (diff)
downloadservo-7e82c5c957821f1328484e90becec0cfb5572938.tar.gz
servo-7e82c5c957821f1328484e90becec0cfb5572938.zip
Compile Servo with the latest version of rust stable (#30831)
This completes the transition to compiling Servo with rust stable. Some nightly-only features are still used when compiling the `script` and `crown` crates, as well as for some style unit tests. These will likely break with newer compiler versions, but `crown` can be disabled for them conditionally. This is just the first step. This has some caveats: 1. We need to disable setting up the special linker on Linux. The -Z option isn't supported with stable rust so using this is out -- meanwhile we can't be sure that lld is installed on most systems. 2. `cargo fmt` still uses some unstable options, so we need to rely on the unstable toolchain just for running `fmt`. The idea is to fix this gradually.
Diffstat (limited to 'components/script/dom/testbinding.rs')
-rw-r--r--components/script/dom/testbinding.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/components/script/dom/testbinding.rs b/components/script/dom/testbinding.rs
index 5e2748ac692..94af8390041 100644
--- a/components/script/dom/testbinding.rs
+++ b/components/script/dom/testbinding.rs
@@ -5,7 +5,6 @@
// check-tidy: no specs after this line
use std::borrow::ToOwned;
-use std::ptr;
use std::ptr::NonNull;
use std::rc::Rc;
@@ -1043,11 +1042,7 @@ impl TestBindingMethods for TestBinding {
#[allow(unsafe_code)]
fn CrashHard(&self) {
- static READ_ONLY_VALUE: i32 = 0;
- unsafe {
- let p: *mut u32 = &READ_ONLY_VALUE as *const _ as *mut _;
- ptr::write_volatile(p, 0xbaadc0de);
- }
+ unsafe { std::ptr::null_mut::<i32>().write(42) }
}
fn AdvanceClock(&self, ms: i32) {