Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v4
/
vlib
/
v
/
checker
/
tests
/
comptime_call_method_args_err.vv
15
lines
·
11
sloc
·
167 bytes
·
4ce6e663bfc3415d2f38fbcbf75807529b44b42e
Raw
1
module main
2
3
struct S1 {}
4
5
fn main() {
6
s1 := S1{}
7
8
$for method in S1.methods {
9
println(s1.$method('yo'))
10
}
11
}
12
13
fn (t S1) method_hello() string {
14
return 'Hello'
15
}
16