1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/checker/tests/nested_fn_alias_err.out
2022-11-09 10:36:39 +02:00

5 lines
196 B
Plaintext

vlib/v/checker/tests/nested_fn_alias_err.vv:2:12: error: type `Fn1` is an alias, use the original alias type `fn ()` instead
1 | type Fn1 = fn ()
2 | type Fn2 = Fn1
| ~~~