summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-region-ptrs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-region-ptrs.rs')
-rw-r--r--tests/ui/consts/const-region-ptrs.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/consts/const-region-ptrs.rs b/tests/ui/consts/const-region-ptrs.rs
new file mode 100644
index 000000000..9b94a2b11
--- /dev/null
+++ b/tests/ui/consts/const-region-ptrs.rs
@@ -0,0 +1,15 @@
+// run-pass
+#![allow(non_upper_case_globals)]
+
+struct Pair<'a> { a: isize, b: &'a isize }
+
+const x: &'static isize = &10;
+
+const y: &'static Pair<'static> = &Pair {a: 15, b: x};
+
+pub fn main() {
+ println!("x = {}", *x);
+ println!("y = {{a: {}, b: {}}}", y.a, *(y.b));
+ assert_eq!(*x, 10);
+ assert_eq!(*(y.b), 10);
+}