v2 / vlib / v / tests / testdata / enum_in_builtin / c.v
6 lines · 5 sloc · 72 bytes · c14b357fec32d7341826c405ce624cb35e7233e4
Raw
1module c
2
3pub fn tst_enum() {
4 a := BTest_enum.v0
5 println(a.tst_f())
6}
7