v/vlib/v/tests/inout/panic_with_cg.vv

9 lines
83 B
V

fn buggy_function() {
panic('panicing...')
}
fn main(){
buggy_function()
}