rust/src/test/run-pass/anon-obj-with-self-call-2.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

17 lines
283 B
Rust

// Reduced test case for issue #540.
fn main() {
obj a() {
fn foo() -> int { ret 2; }
}
let my_a = a();
let my_b =
obj () {
fn baz() -> int { ret self.foo(); }
with
my_a
};
assert (my_b.baz() == 2);
}