rust/src/test/run-pass/anon-obj-degenerate.rs
2011-07-27 15:54:33 +02:00

20 lines
336 B
Rust

use std;
fn main() {
obj a() {
fn foo() -> int { ret 2; }
fn bar() -> int { ret self.foo(); }
}
let my_a = a();
// Degenerate anonymous object: one that doesn't add any new
// methods or fields.
let my_d = obj () { with my_a };
assert (my_d.foo() == 2);
assert (my_d.bar() == 2);
}