]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ui-testing-optout.stderr
Override rustc version in ui and mir-opt tests to get stable hashes
[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;
5   |          ^ not found in this scope
6
7 error[E0412]: cannot find type `D` in this scope
8  --> $DIR/ui-testing-optout.rs:7:10
9   |
10 4 | type A = B;
11   | ----------- similarly named type alias `A` defined here
12 ...
13 7 | type C = D;
14   |          ^ help: a type alias with a similar name exists: `A`
15
16 error[E0412]: cannot find type `F` in this scope
17   --> $DIR/ui-testing-optout.rs:92:10
18    |
19 4  | type A = B;
20    | ----------- similarly named type alias `A` defined here
21 ...
22 92 | type E = F;
23    |          ^ help: a type alias with a similar name exists: `A`
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0412`.