rust/tests/ui/panic-runtime/unwind-rec2.rs

24 lines
338 B
Rust

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