about summary refs log tree commit diff
path: root/tests/ui/panic-runtime/unwind-rec2.rs
blob: ed02b117fff4b60c8b4d457f25b8caa6ddfc6cfb (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
//@ needs-subprocess

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(),
    };
}