2014-06-24 16:51:12 -05:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
|
|
|
// Issue #12470.
|
|
|
|
|
|
|
|
trait X {
|
|
|
|
fn get_i(&self) -> int;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct B {
|
|
|
|
i: int
|
|
|
|
}
|
|
|
|
|
|
|
|
impl X for B {
|
|
|
|
fn get_i(&self) -> int {
|
|
|
|
self.i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for B {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
println!("drop");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct A<'r> {
|
2014-08-27 20:46:52 -05:00
|
|
|
p: &'r X+'r
|
2014-06-24 16:51:12 -05:00
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn make_a(p:&X) -> A {
|
2014-06-24 16:51:12 -05:00
|
|
|
A{p:p}
|
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn make_make_a<'a>() -> A<'a> {
|
2014-06-24 16:51:12 -05:00
|
|
|
let b: Box<B> = box B {
|
|
|
|
i: 1,
|
|
|
|
};
|
2014-07-07 18:35:15 -05:00
|
|
|
let bb: &B = &*b; //~ ERROR `*b` does not live long enough
|
2014-06-24 16:51:12 -05:00
|
|
|
make_a(bb)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let a = make_make_a();
|
|
|
|
println!("{}", a.p.get_i());
|
|
|
|
}
|