1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/anon_unused_param.out
2021-03-12 14:17:37 +02:00

5 lines
140 B
Plaintext

vlib/v/parser/tests/anon_unused_param.vv:1:9: error: use `_` to name an unused parameter
1 | _ = fn (int){}
| ~~~
2 |