Sync from rust 1716932743
This commit is contained in:
commit
fed9534323
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
#![feature(start, core_intrinsics, alloc_error_handler, box_syntax)]
|
#![feature(start, core_intrinsics, alloc_error_handler)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
@ -29,7 +29,7 @@ fn alloc_error_handler(_: alloc::alloc::Layout) -> ! {
|
||||||
|
|
||||||
#[start]
|
#[start]
|
||||||
fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
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 {
|
unsafe {
|
||||||
puts(*world as *const str as *const u8);
|
puts(*world as *const str as *const u8);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#![feature(no_core, lang_items, never_type, linkage, extern_types, thread_local, box_syntax, repr_simd)]
|
#![feature(no_core, lang_items, never_type, linkage, extern_types, thread_local, repr_simd)]
|
||||||
#![no_core]
|
#![no_core]
|
||||||
#![allow(dead_code, non_camel_case_types)]
|
#![allow(dead_code, non_camel_case_types)]
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ fn main() {
|
||||||
let ptr: *const i8 = hello as *const [u8] as *const i8;
|
let ptr: *const i8 = hello as *const [u8] as *const i8;
|
||||||
puts(ptr);
|
puts(ptr);
|
||||||
|
|
||||||
let world: Box<&str> = box "World!\0";
|
let world: Box<&str> = Box::new("World!\0");
|
||||||
puts(*world as *const str as *const i8);
|
puts(*world as *const str as *const i8);
|
||||||
world as Box<dyn SomeTrait>;
|
world as Box<dyn SomeTrait>;
|
||||||
|
|
||||||
|
@ -238,10 +238,10 @@ fn main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let _ = box NoisyDrop {
|
let _ = Box::new(NoisyDrop {
|
||||||
text: "Boxed outer got dropped!\0",
|
text: "Boxed outer got dropped!\0",
|
||||||
inner: NoisyDropInner,
|
inner: NoisyDropInner,
|
||||||
} as Box<dyn SomeTrait>;
|
}) as Box<dyn SomeTrait>;
|
||||||
|
|
||||||
const FUNC_REF: Option<fn()> = Some(main);
|
const FUNC_REF: Option<fn()> = Some(main);
|
||||||
match FUNC_REF {
|
match FUNC_REF {
|
||||||
|
|
Loading…
Add table
Reference in a new issue