Add tests
This commit is contained in:
parent
ab949fdd64
commit
1ea88a8689
1 changed files with 19 additions and 0 deletions
19
src/test/ui/consts/zst_no_llvm_alloc.rs
Normal file
19
src/test/ui/consts/zst_no_llvm_alloc.rs
Normal file
|
@ -0,0 +1,19 @@
|
|||
// run-pass
|
||||
|
||||
#[repr(align(4))]
|
||||
struct Foo;
|
||||
|
||||
static FOO: Foo = Foo;
|
||||
|
||||
fn main() {
|
||||
let x: &'static () = &();
|
||||
assert_eq!(x as *const () as usize, 1);
|
||||
let x: &'static Foo = &Foo;
|
||||
assert_eq!(x as *const Foo as usize, 4);
|
||||
|
||||
// statics must have a unique address
|
||||
assert_ne!(&FOO as *const Foo as usize, 4);
|
||||
|
||||
assert_eq!(<Vec<i32>>::new().as_ptr(), <&[i32]>::default().as_ptr());
|
||||
assert_eq!(<Box<[i32]>>::default().as_ptr(), (&[]).as_ptr());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue