diff options
| author | The Miri Conjob Bot <miri@cron.bot> | 2024-01-10 05:10:02 +0000 |
|---|---|---|
| committer | The Miri Conjob Bot <miri@cron.bot> | 2024-01-10 05:10:02 +0000 |
| commit | 7e9da57c9ed96069295a35f2e95ecf9266c693a8 (patch) | |
| tree | f776335f51ac4d7e9b0e338d10cb15923747cbb5 /compiler/rustc_codegen_gcc/example | |
| parent | 7a75766c41893b39352171dd313557f79f2b9f9d (diff) | |
| parent | 075f2e0345a00fcb3352ac9ece8a87817b73d305 (diff) | |
| download | rust-7e9da57c9ed96069295a35f2e95ecf9266c693a8.tar.gz rust-7e9da57c9ed96069295a35f2e95ecf9266c693a8.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_gcc/example')
| -rw-r--r-- | compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs b/compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs index 40a1ad22c0e..9827e299f2a 100644 --- a/compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs +++ b/compiler/rustc_codegen_gcc/example/mini_core_hello_world.rs @@ -98,6 +98,9 @@ fn start<T: Termination + 'static>( } static mut NUM: u8 = 6 * 7; + +// FIXME: Use `SyncUnsafeCell` instead of allowing `static_mut_ref` lint +#[allow(static_mut_ref)] static NUM_REF: &'static u8 = unsafe { &NUM }; macro_rules! assert { |
