]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ui-testing-optout.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / ui-testing-optout.stderr
1 error[E0412]: cannot find type `B` in this scope
2  --> $DIR/ui-testing-optout.rs:4:10
3   |
4 4 | type A = B; //~ ERROR
5   |          ^ did you mean `A`?
6
7 error[E0412]: cannot find type `D` in this scope
8   --> $DIR/ui-testing-optout.rs:17:10
9    |
10 17 | type C = D; //~ ERROR
11    |          ^ did you mean `A`?
12
13 error[E0412]: cannot find type `F` in this scope
14    --> $DIR/ui-testing-optout.rs:102:10
15     |
16 102 | type E = F; //~ ERROR
17     |          ^ did you mean `A`?
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0412`.