v/vlib/v/checker/tests/str_method_return_string.out

8 lines
222 B
Plaintext

vlib/v/checker/tests/str_method_return_string.vv:5:1: error: .str() methods should return `string`
3 | }
4 |
5 | fn (z Zzz) str(x int) int {
| ~~~~~~~~~~~~~~~~~~~~~~~~~
6 | return z.x
7 | }