vxx2 / vlib / v / checker / tests / static_method_not_found_err.vv
12 lines · 10 sloc · 161 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct TestStruct {
2 name string
3}
4
5fn (f TestStruct) static_method() string {
6 return 'hello'
7}
8
9fn main() {
10 val := TestStruct.static_method()
11 println(val)
12}
13