2018-02-24 00:07:51 +03:00
|
|
|
error[E0412]: cannot find type `B` in this scope
|
|
|
|
--> $DIR/ui-testing-optout.rs:4:10
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
4 | type A = B;
|
2020-08-09 21:02:58 -07:00
|
|
|
| ^ not found in this scope
|
2018-02-24 00:07:51 +03:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `D` in this scope
|
2020-05-19 13:08:50 -04:00
|
|
|
--> $DIR/ui-testing-optout.rs:7:10
|
|
|
|
|
|
|
|
|
4 | type A = B;
|
|
|
|
| ----------- similarly named type alias `A` defined here
|
2019-10-14 17:20:50 -07:00
|
|
|
...
|
2020-05-19 13:08:50 -04:00
|
|
|
7 | type C = D;
|
|
|
|
| ^ help: a type alias with a similar name exists: `A`
|
2018-02-24 00:07:51 +03:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `F` in this scope
|
2020-05-19 13:08:50 -04:00
|
|
|
--> $DIR/ui-testing-optout.rs:92:10
|
2018-12-25 08:56:47 -07:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
4 | type A = B;
|
|
|
|
| ----------- similarly named type alias `A` defined here
|
|
|
|
...
|
2020-05-19 13:08:50 -04:00
|
|
|
92 | type E = F;
|
2019-01-09 14:11:00 -05:00
|
|
|
| ^ help: a type alias with a similar name exists: `A`
|
2018-02-24 00:07:51 +03:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|