v/vlib/v/checker/tests/comptime_call_method.vv

13 lines
145 B
V

struct S1 {}
fn (t S1) m(s string) int {
return 7
}
fn test_methods_arg() {
s1 := S1{}
$for method in S1.methods {
s1.$method(wrong)
}
}