v2 / vlib / v / checker / tests / comptime_call_method.vv
12 lines · 10 sloc · 145 bytes · f26d2f02b7a825739f69aad53dbabcf71f42fff3
Raw
1struct S1 {}
2
3fn (t S1) m(s string) int {
4 return 7
5}
6
7fn test_methods_arg() {
8 s1 := S1{}
9 $for method in S1.methods {
10 s1.$method(wrong)
11 }
12}
13