1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/fn_type_only_args_no_body.vv
2020-06-29 10:21:01 +03:00

7 lines
41 B
V

fn test(int) {
}
fn main() {
test(0)
}