]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-12470.rs
Move some `compile-fail` tests to `ui`
[rust.git] / src / test / ui / issue-12470.rs
1 // Copyright 2012-2014 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 #![feature(box_syntax)]
12
13 trait X {
14     fn get_i(&self) -> isize;
15 }
16
17
18 struct B {
19     i: isize
20 }
21
22 impl X for B {
23     fn get_i(&self) -> isize {
24         self.i
25     }
26 }
27
28 struct A<'a> {
29     p: &'a (X+'a)
30 }
31
32 fn make_a<'a>(p: &'a X) -> A<'a> {
33     A { p: p }
34 }
35
36 fn make_make_a<'a>() -> A<'a> {
37     let b: Box<B> = box B {i:1};
38     let bb: &B = &*b;    //~ ERROR does not live long enough
39     make_a(bb)
40 }
41
42 fn main() {
43     let _a = make_make_a();
44 }