summary refs log tree commit diff
path: root/src/test/run-fail/unwind-partial-vec.rs
blob: 5dc7c6a99b14f0baccf352d149eeade86971d0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// error-pattern:fail

fn f() -> ~[int] { fail; }

// Voodoo. In unwind-alt we had to do this to trigger the bug. Might
// have been to do with memory allocation patterns.
fn prime() {
    @0;
}

fn partial() {
    let x = ~[~[0], f(), ~[0]];
}

fn main() {
    prime();
    partial();
}