]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-30438-b.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-30438-b.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Modified regression test for Issue #30438 that exposed an
12 // independent issue (see discussion on ticket).
13
14 use std::ops::Index;
15
16 struct Test<'a> {
17     s: &'a String
18 }
19
20 impl <'a> Index<usize> for Test<'a> {
21     type Output = Test<'a>;
22     fn index(&self, _: usize) -> &Self::Output {
23         &Test { s: &self.s}
24         //~^ ERROR: borrowed value does not live long enough
25     }
26 }
27
28 fn main() {
29     let s = "Hello World".to_string();
30     let test = Test{s: &s};
31     let r = &test[0];
32     println!("{}", test.s); // OK since test is valid
33     println!("{}", r.s); // Segfault since value pointed by r has already been dropped
34 }