]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ui-testing-optout.stderr
Auto merge of #65779 - kevgrasso:E0308highlight, r=estebank
[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   | ---------^-
6   | |        |
7   | |        help: a type alias with a similar name exists: `A`
8   | similarly named type alias `A` defined here
9
10 error[E0412]: cannot find type `D` in this scope
11   --> $DIR/ui-testing-optout.rs:10:10
12    |
13 4  | type A = B;
14    | ----------- similarly named type alias `A` defined here
15 ...
16 10 | type C = D;
17    |          ^ help: a type alias with a similar name exists: `A`
18
19 error[E0412]: cannot find type `F` in this scope
20   --> $DIR/ui-testing-optout.rs:95:10
21    |
22 4  | type A = B;
23    | ----------- similarly named type alias `A` defined here
24 ...
25 95 | type E = F;
26    |          ^ help: a type alias with a similar name exists: `A`
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0412`.