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