v/vlib/v/fmt/tests/blocks_expected.vv

12 lines
95 B
V

fn unsafe_fn() {
unsafe {
_ = malloc(2)
}
}
fn fn_with_defer() {
defer {
voidfn()
}
}