2012-04-24 17:52:52 -05:00
|
|
|
iface get_ctxt/& {
|
|
|
|
fn get_ctxt() -> &self.uint;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_gc1(gc: get_ctxt/&a) -> get_ctxt/&b {
|
2012-06-30 06:23:59 -05:00
|
|
|
ret gc; //~ ERROR mismatched types: expected `get_ctxt/&b` but found `get_ctxt/&a`
|
2012-04-24 17:52:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make_gc2(gc: get_ctxt/&a) -> get_ctxt/&b {
|
2012-06-30 06:23:59 -05:00
|
|
|
ret gc as get_ctxt; //~ ERROR mismatched types: expected `get_ctxt/&b` but found `get_ctxt/&a`
|
2012-04-24 17:52:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|