rust/src/test/ui/issues/issue-30438-a.rs
2018-12-25 21:08:33 -07:00

24 lines
573 B
Rust

// Original regression test for Issue #30438.
use std::ops::Index;
struct Test<'a> {
s: &'a String
}
impl <'a> Index<usize> for Test<'a> {
type Output = Test<'a>;
fn index(&self, _: usize) -> &Self::Output {
return &Test { s: &self.s};
//~^ ERROR: borrowed value does not live long enough
}
}
fn main() {
let s = "Hello World".to_string();
let test = Test{s: &s};
let r = &test[0];
println!("{}", test.s); // OK since test is valid
println!("{}", r.s); // Segfault since value pointed by r has already been dropped
}