1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/expected_type_enum_err.vv
2020-12-11 19:23:29 +02:00

8 lines
65 B
V

module main
enum Test { bar }
fn main() {
if `c` == .bar {}
}