Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
comptime_call_method.vv
12
lines
·
10
sloc
·
145 bytes
·
f26d2f02b7a825739f69aad53dbabcf71f42fff3
Raw
1
struct S1 {}
2
3
fn (t S1) m(s string) int {
4
return 7
5
}
6
7
fn test_methods_arg() {
8
s1 := S1{}
9
$for method in S1.methods {
10
s1.$method(wrong)
11
}
12
}
13