vxx2 / vlib / v / checker / tests / string_to_enum_cast_err.vv
12 lines · 10 sloc · 101 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1enum Test {
2 one
3 two
4 three
5}
6
7fn main() {
8 _ := Test('one')
9
10 my_str := 'one'
11 _ := Test(my_str)
12}
13