From d6431f69ad2d05e9aa2d5a316c1b4fcaf85f24aa Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Wed, 23 Oct 2019 09:55:20 -0700 Subject: [PATCH] Test that borrows of projections are promoted everywhere Previously, this worked in `fn`s but not `const`s or `static`s. --- src/test/ui/consts/promote_borrowed_field.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/test/ui/consts/promote_borrowed_field.rs diff --git a/src/test/ui/consts/promote_borrowed_field.rs b/src/test/ui/consts/promote_borrowed_field.rs new file mode 100644 index 000000000000..c4841b46f60d --- /dev/null +++ b/src/test/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; +}