v/vlib/v/checker/tests/nested_aliases.out

5 lines
203 B
Plaintext

vlib/v/checker/tests/nested_aliases.vv:2:16: error: type `MyInt` is an alias, use the original alias type `int` instead
1 | type MyInt = int
2 | type MyMyInt = MyInt
| ~~~~~