rust/tests/ui/panic-runtime/unwind-rec2.rs
2023-01-11 09:32:08 +00:00

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