1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/type_alias_same_type_err.out

6 lines
177 B
Plaintext

vlib/v/parser/tests/type_alias_same_type_err.vv:1:1: error: a type alias can not refer to itself: Foo
1 | type Foo = Foo
| ~~~~~~~~~~~~~~
2 |
3 | fn main() {