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