blob: a9b7ee8ec7d4a981dcef8a7566b249c51508b386 [file] [log] [blame]
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes
fn build() -> Vec<isize> {
panic!();
}
struct Blk {
node: Vec<isize>,
}
fn main() {
let _blk = Blk { node: build() };
}