rust/tests/ui/consts/zst_no_llvm_alloc.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
598 B
Rust
Raw Normal View History

2019-08-17 04:31:09 -05:00
//@ run-pass
#[repr(align(4))]
struct Foo;
static FOO: Foo = Foo;
fn main() {
let x: &'static () = &();
assert_ne!(x as *const () as usize, 1);
2019-08-17 04:31:09 -05:00
let x: &'static Foo = &Foo;
assert_ne!(x as *const Foo as usize, 4);
2019-08-17 04:31:09 -05:00
// statics must have a unique address
assert_ne!(&FOO as *const Foo as usize, 4);
// FIXME this two tests should be assert_eq!
// this stopped working since we are promoting to constants instead of statics
assert_ne!(<Vec<i32>>::new().as_ptr(), <&[i32]>::default().as_ptr());
assert_ne!(<Box<[i32]>>::default().as_ptr(), (&[]).as_ptr());
2019-08-17 04:31:09 -05:00
}