Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
match_enum_ref.out
7
lines
·
7
sloc
·
276 bytes
·
d912268e5dc45d38f4873ebcbed18e276746b23b
Raw
1
vlib/v/checker/tests/match_enum_ref.vv:6:3: error: missing `*` dereferencing `t` in match statement
2
4 | fn f(t &SomeType) ?int {
3
5 | return match
4
6 | t // note the missing asterisk
5
| ^
6
7 | {
7
8 | .a {