//@ run-fail //@ error-pattern:explicit panic //@ needs-subprocess fn build() -> Vec { panic!(); } struct Blk { node: Vec, } fn main() { let _blk = Blk { node: build() }; }