vxx2 / vlib / v / checker / tests / unused_param.out
14 lines · 14 sloc · 530 bytes · ca236e967e58d4ff428d978f36360ebcbe8f3871
Raw
1vlib/v/checker/tests/unused_param.vv:5:33: notice: unused parameter: `unused_param`
2 3 | struct Foo {}
3 4 |
4 5 | fn (unused_receiver Foo) method(unused_param int) {}
5 | ~~~~~~~~~~~~
6 6 |
7 7 | fn func(unused_param int) {}
8vlib/v/checker/tests/unused_param.vv:7:9: notice: unused parameter: `unused_param`
9 5 | fn (unused_receiver Foo) method(unused_param int) {}
10 6 |
11 7 | fn func(unused_param int) {}
12 | ~~~~~~~~~~~~
13 8 |
14 9 | fn func2(_ int) {}
15