summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/promote_borrowed_field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/promote_borrowed_field.rs')
-rw-r--r--src/test/ui/consts/promote_borrowed_field.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/consts/promote_borrowed_field.rs b/src/test/ui/consts/promote_borrowed_field.rs
deleted file mode 100644
index c4841b46f..000000000
--- a/src/test/ui/consts/promote_borrowed_field.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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;
-}