Add a test that uses a hypothetical bare-fn spawn signature

Issue #1022
This commit is contained in:
Brian Anderson 2011-10-10 18:19:01 -07:00
parent 1b0f1f0b79
commit 90c2402089

View File

@ -0,0 +1,16 @@
// This is what the signature to spawn should look like with bare functions
fn spawn<~T>(val: T, f: fn#(T)) {
f(val);
}
fn# f(&&i: int) {
assert i == 100;
}
fn main() {
spawn(100, f);
spawn(100, fn#(&&i: int) {
assert i == 100;
});
}