about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-08-17 11:31:09 +0200
committerOliver Scherer <github35764891676564198441@oli-obk.de>2019-08-17 11:31:09 +0200
commit1ea88a8689a461638fef31e01e62fffc63ac5b79 (patch)
tree010967244e6a2d2c75cee5caa28051ff72a9b420
parentab949fdd64433749ebb7f8ef516ee2cdfe217a9d (diff)
downloadrust-1ea88a8689a461638fef31e01e62fffc63ac5b79.tar.gz
rust-1ea88a8689a461638fef31e01e62fffc63ac5b79.zip
Add tests
-rw-r--r--src/test/ui/consts/zst_no_llvm_alloc.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/consts/zst_no_llvm_alloc.rs b/src/test/ui/consts/zst_no_llvm_alloc.rs
new file mode 100644
index 00000000000..5d779355400
--- /dev/null
+++ b/src/test/ui/consts/zst_no_llvm_alloc.rs
@@ -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());
+}