summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic-runtime/unwind-rec2.rs
blob: a130f9e879f2d748d908ba214a3ced25ca1d1ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

fn build1() -> Vec<isize> {
    vec![0, 0, 0, 0, 0, 0, 0]
}

fn build2() -> Vec<isize> {
    panic!();
}

struct Blk {
    node: Vec<isize>,
    span: Vec<isize>,
}

fn main() {
    let _blk = Blk {
        node: build1(),
        span: build2(),
    };
}