Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
comptime_param_not_fn_err.out
7
lines
·
7
sloc
·
283 bytes
·
f4c04844b24277116cdeec42b8508a5c4f6983e3
Raw
1
vlib/v/checker/tests/comptime_param_not_fn_err.vv:5:12: error: iterating over `.params` is supported only for functions, and `Test` is not a function
2
3 |
3
4 | fn main() {
4
5 | $for f in Test.params {
5
| ~~~~
6
6 | println(f)
7
7 | }
8