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_existing_type_err.out

8 lines
227 B
Plaintext

vlib/v/parser/tests/type_alias_existing_type_err.vv:3:6: error: cannot register alias `Foo`, another type with this name exists
1 | struct Foo{}
2 |
3 | type Foo = Foo
| ~~~
4 |
5 | fn main() {