rust/src/test/compile-fail/regions-trait-2.rs

22 lines
361 B
Rust
Raw Normal View History

type ctxt = { v: uint };
trait get_ctxt {
fn get_ctxt() -> &self/ctxt;
}
type has_ctxt = { c: &ctxt };
2012-08-07 20:10:06 -05:00
impl has_ctxt: get_ctxt {
fn get_ctxt() -> &self/ctxt { self.c }
}
fn make_gc() -> get_ctxt {
let ctxt = { v: 22u };
let hc = { c: &ctxt }; //~ ERROR illegal borrow
return hc as get_ctxt;
}
fn main() {
make_gc().get_ctxt().v;
}