mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
338 B
Rust
23 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(),
|
|
};
|
|
}
|