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.out
2023-07-14 12:40:23 +03:00

6 lines
178 B
Plaintext

vlib/v/parser/tests/fn_type_only_args_no_body.vv:1:14: error: functions with type only params can not have bodies
1 | fn test(int) {
| ^
2 | }
3 |