diff options
| author | clubby789 <jamie@hill-daniel.co.uk> | 2023-02-27 13:07:44 +0000 |
|---|---|---|
| committer | clubby789 <jamie@hill-daniel.co.uk> | 2023-03-12 13:19:46 +0000 |
| commit | ee38de5155b1526fa0b0b3cf118376259ac9d5b7 (patch) | |
| tree | de1813dc5e8fb99cd8b2bcf42eb4e5d06d032d86 /example | |
| parent | fe93911ebcdc2f9c95e0d40e138fa2f7a3932093 (diff) | |
| download | rust-ee38de5155b1526fa0b0b3cf118376259ac9d5b7.tar.gz rust-ee38de5155b1526fa0b0b3cf118376259ac9d5b7.zip | |
Remove uses of `box_syntax` in rustc and tools
Diffstat (limited to 'example')
| -rw-r--r-- | example/alloc_example.rs | 4 | ||||
| -rw-r--r-- | example/mini_core_hello_world.rs | 8 | ||||
| -rw-r--r-- | example/mod_bench.rs | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/example/alloc_example.rs b/example/alloc_example.rs index c80348ca549..754e7931412 100644 --- a/example/alloc_example.rs +++ b/example/alloc_example.rs @@ -1,4 +1,4 @@ -#![feature(start, box_syntax, core_intrinsics, alloc_error_handler, lang_items)] +#![feature(start, core_intrinsics, alloc_error_handler, lang_items)] #![no_std] extern crate alloc; @@ -38,7 +38,7 @@ unsafe extern "C" fn _Unwind_Resume() { #[start] fn main(_argc: isize, _argv: *const *const u8) -> isize { - let world: Box<&str> = box "Hello World!\0"; + let world: Box<&str> = Box::new("Hello World!\0"); unsafe { puts(*world as *const str as *const u8); } diff --git a/example/mini_core_hello_world.rs b/example/mini_core_hello_world.rs index 993a31e68ea..cff26077740 100644 --- a/example/mini_core_hello_world.rs +++ b/example/mini_core_hello_world.rs @@ -1,7 +1,7 @@ // Adapted from https://github.com/sunfishcode/mir2cranelift/blob/master/rust-examples/nocore-hello-world.rs #![feature( - no_core, unboxed_closures, start, lang_items, box_syntax, never_type, linkage, + no_core, unboxed_closures, start, lang_items, never_type, linkage, extern_types, thread_local )] #![no_core] @@ -163,7 +163,7 @@ fn main() { let ptr: *const u8 = hello as *const [u8] as *const u8; puts(ptr); - let world: Box<&str> = box "World!\0"; + let world: Box<&str> = Box::new("World!\0"); puts(*world as *const str as *const u8); world as Box<dyn SomeTrait>; @@ -223,10 +223,10 @@ fn main() { } } - let _ = box NoisyDrop { + let _ = Box::new(NoisyDrop { text: "Boxed outer got dropped!\0", inner: NoisyDropInner, - } as Box<dyn SomeTrait>; + }) as Box<dyn SomeTrait>; const FUNC_REF: Option<fn()> = Some(main); #[allow(unreachable_code)] diff --git a/example/mod_bench.rs b/example/mod_bench.rs index 95bcad2cd17..5e2e7f25a2c 100644 --- a/example/mod_bench.rs +++ b/example/mod_bench.rs @@ -1,4 +1,4 @@ -#![feature(start, box_syntax, core_intrinsics, lang_items)] +#![feature(start, core_intrinsics, lang_items)] #![no_std] #[link(name = "c")] |
