about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2018-05-10 12:06:51 +0300
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2018-05-16 14:11:01 +0300
commitd79dee0b62fb33bcb2febac60ced71f28dccc602 (patch)
tree3ae271316e0678a5b01b09a6a3bbe806cf0fcb6b /src/test
parentb9af400a4659f722843ac96c251ec52f87998dd2 (diff)
downloadrust-d79dee0b62fb33bcb2febac60ced71f28dccc602.tar.gz
rust-d79dee0b62fb33bcb2febac60ced71f28dccc602.zip
rustc_mir: also promote interior borrows, not just whole temps.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-49955.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-49955.rs b/src/test/run-pass/issue-49955.rs
new file mode 100644
index 00000000000..2d36806ef4f
--- /dev/null
+++ b/src/test/run-pass/issue-49955.rs
@@ -0,0 +1,30 @@
+// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// compile-flags: -Z borrowck=compare
+
+const ALL_THE_NUMS: [u32; 1] = [
+    1
+];
+
+#[inline(never)]
+fn array(i: usize) -> &'static u32 {
+    return &ALL_THE_NUMS[i];
+}
+
+#[inline(never)]
+fn tuple_field() -> &'static u32 {
+    &(42,).0
+}
+
+fn main() {
+    assert_eq!(tuple_field().to_string(), "42");
+    // assert_eq!(array(0).to_string(), "1");
+}