rust/src/test/run-pass/anon-objs-with-fields.rs

28 lines
510 B
Rust
Raw Normal View History

//xfail-stage1
//xfail-stage2
//xfail-stage3
use std;
fn main() {
obj a() {
2011-07-27 07:19:39 -05:00
fn foo() -> int { ret 2; }
fn bar() -> int { ret self.foo(); }
}
2011-07-27 07:19:39 -05:00
let my_a = a();
// Extending an object with a new field. Adding support for this
// is issue #538.
2011-06-21 18:32:27 -05:00
// Right now, this fails with "unresolved name: quux".
2011-07-27 07:19:39 -05:00
let my_c =
obj (quux: int = 3) {
fn baz() -> int { ret quux + 4; }
with
my_a
};
assert (my_c.baz() == 7);
2011-07-27 07:19:39 -05:00
}