vxx2 / vlib / v / checker / tests / comptime_call_method_args_err.vv
15 lines · 11 sloc · 167 bytes · 4ce6e663bfc3415d2f38fbcbf75807529b44b42e
Raw
1module main
2
3struct S1 {}
4
5fn main() {
6 s1 := S1{}
7
8 $for method in S1.methods {
9 println(s1.$method('yo'))
10 }
11}
12
13fn (t S1) method_hello() string {
14 return 'Hello'
15}
16