vxx2 / vlib / v / checker / tests / undefined_ident_of_struct.vv
9 lines · 7 sloc · 73 bytes
Raw
1module main
2
3fn get() {
4 f.a = 'test'
5}
6
7fn main() {
8 println('hello')
9}
10