v/vlib/v/parser/tests/anon_sum_type_receiver_err.out

6 lines
192 B
Plaintext
Raw Normal View History

2021-12-25 16:26:40 +01:00
vlib/v/parser/tests/anon_sum_type_receiver_err.vv:1:11: error: unexpected token `|`, expecting `)`
1 | fn (x int | string) baz() {
| ^
2 | println('baz')
3 | }