]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-trait-variance.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / regions / regions-trait-variance.rs
1 // Copyright 2012 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 // Issue #12470.
14
15 trait X {
16     fn get_i(&self) -> isize;
17 }
18
19 struct B {
20     i: isize
21 }
22
23 impl X for B {
24     fn get_i(&self) -> isize {
25         self.i
26     }
27 }
28
29 impl Drop for B {
30     fn drop(&mut self) {
31         println!("drop");
32     }
33 }
34
35 struct A<'r> {
36     p: &'r (X+'r)
37 }
38
39 fn make_a(p:&X) -> A {
40     A{p:p}
41 }
42
43 fn make_make_a<'a>() -> A<'a> {
44     let b: Box<B> = box B {
45         i: 1,
46     };
47     let bb: &B = &*b; //~ ERROR `*b` does not live long enough
48     make_a(bb)
49 }
50
51 fn main() {
52     let a = make_make_a();
53     println!("{}", a.p.get_i());
54 }