vxx2 / vlib / v / checker / tests / chained_alias_cycle_err.out
11 lines · 11 sloc · 400 bytes · 2543c5683ca41a6a38768900799c3629ba5ef0a7
Raw
1vlib/v/checker/tests/chained_alias_cycle_err.vv:1:14: error: alias `Alpha` forms a cycle through `Beta`
2 1 | type Alpha = Beta
3 | ~~~~
4 2 | type Beta = Alpha
5 3 |
6vlib/v/checker/tests/chained_alias_cycle_err.vv:2:13: error: alias `Beta` forms a cycle through `Alpha`
7 1 | type Alpha = Beta
8 2 | type Beta = Alpha
9 | ~~~~~
10 3 |
11 4 | fn main() {
12