2019-08-17 04:31:09 -05:00
|
|
|
//@ run-pass
|
|
|
|
|
|
|
|
#[repr(align(4))]
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
static FOO: Foo = Foo;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: &'static () = &();
|
2019-11-22 14:26:09 -06:00
|
|
|
assert_ne!(x as *const () as usize, 1);
|
2019-08-17 04:31:09 -05:00
|
|
|
let x: &'static Foo = &Foo;
|
2019-11-22 14:26:09 -06:00
|
|
|
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);
|
|
|
|
|
2019-11-22 14:26:09 -06:00
|
|
|
// 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
|
|
|
}
|