v2 / vlib / v / checker / tests / comptime_param_not_fn_err.vv
8 lines · 7 sloc · 72 bytes · f4c04844b24277116cdeec42b8508a5c4f6983e3
Raw
1struct Test {
2}
3
4fn main() {
5 $for f in Test.params {
6 println(f)
7 }
8}
9