rust/src/test/run-pass/regions-trait.rs
Niko Matsakis 511e7626ae Infer variance of types with respect to the region parameter.
A similar approach could be used for type parameters.

Fixes #2282.
2012-08-23 06:30:43 -07:00

25 lines
360 B
Rust

type ctxt = { v: uint };
trait get_ctxt {
fn get_ctxt() -> &self/ctxt;
}
type has_ctxt = { c: &ctxt };
impl has_ctxt: get_ctxt {
fn get_ctxt() -> &self/ctxt {
self.c
}
}
fn get_v(gc: get_ctxt) -> uint {
gc.get_ctxt().v
}
fn main() {
let ctxt = { v: 22u };
let hc = { c: &ctxt };
assert get_v(hc as get_ctxt) == 22u;
}