vxx2 / vlib / v / checker / tests / from_string_on_non_enum_err.vv
14 lines · 11 sloc · 141 bytes · f60d2855850801b3dfc37d08c876068c2f7b3266
Raw
1struct Foo {
2 a int
3}
4
5struct Bar {
6 b int
7}
8
9fn Bar.from_string(a string) {}
10
11fn main() {
12 Foo.from_string('foo')
13 Bar.from_string('bar')
14}
15