1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/inout/panic_with_cg.vv
2020-05-04 14:34:51 +03:00

9 lines
83 B
V

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