d946e09a72
Issue #667
21 lines
413 B
Rust
21 lines
413 B
Rust
// xfail-test
|
|
|
|
// Test case for issue #435.
|
|
obj foo(x: int) {
|
|
fn add5(n: int) -> int { ret n + x; }
|
|
}
|
|
|
|
fn add5(n: int) -> int { ret n + 5; }
|
|
|
|
fn main() {
|
|
let fiveplusseven = bind add5(7);
|
|
assert (add5(7) == 12);
|
|
assert (fiveplusseven() == 12);
|
|
|
|
let my_foo = foo(5);
|
|
let fiveplusseven_too = bind my_foo.add5(7);
|
|
assert (my_foo.add5(7) == 12);
|
|
assert (fiveplusseven_too() == 12);
|
|
}
|
|
|