mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
5 lines
196 B
Plaintext
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
|
|
| ~~~
|