summary refs log tree commit diff
path: root/src/test/run-pass/unwind-box.rs
blob: 528270c9f9fee5e6ab606a58212a67c46331b7d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// xfail-win32
extern mod std;

fn f() {
    let a = @0;
    fail;
}

fn main() {
    task::spawn_unlinked(f);
}