summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/promote_borrowed_field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/promote_borrowed_field.rs')
-rw-r--r--tests/ui/consts/promote_borrowed_field.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/consts/promote_borrowed_field.rs b/tests/ui/consts/promote_borrowed_field.rs
new file mode 100644
index 000000000..c4841b46f
--- /dev/null
+++ b/tests/ui/consts/promote_borrowed_field.rs
@@ -0,0 +1,12 @@
+// run-pass
+
+// From https://github.com/rust-lang/rust/issues/65727
+
+const _: &i32 = {
+ let x = &(5, false).0;
+ x
+};
+
+fn main() {
+ let _: &'static i32 = &(5, false).0;
+}