]> git.proxmox.com Git - rustc.git/blob - src/test/ui/dyn-trait-compatibility.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / dyn-trait-compatibility.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `dyn`
2 --> $DIR/dyn-trait-compatibility.rs:3:11
3 |
4 LL | type A1 = dyn::dyn;
5 | ^^^ use of undeclared crate or module `dyn`
6
7 error[E0433]: failed to resolve: use of undeclared crate or module `dyn`
8 --> $DIR/dyn-trait-compatibility.rs:9:23
9 |
10 LL | type A3 = dyn<<dyn as dyn>::dyn>;
11 | ^^^ use of undeclared crate or module `dyn`
12
13 error[E0412]: cannot find type `dyn` in this scope
14 --> $DIR/dyn-trait-compatibility.rs:1:11
15 |
16 LL | type A0 = dyn;
17 | ^^^ not found in this scope
18
19 error[E0412]: cannot find type `dyn` in this scope
20 --> $DIR/dyn-trait-compatibility.rs:5:11
21 |
22 LL | type A2 = dyn<dyn, dyn>;
23 | ^^^ not found in this scope
24
25 error[E0412]: cannot find type `dyn` in this scope
26 --> $DIR/dyn-trait-compatibility.rs:5:15
27 |
28 LL | type A2 = dyn<dyn, dyn>;
29 | - ^^^ not found in this scope
30 | |
31 | help: you might be missing a type parameter: `<dyn>`
32
33 error[E0412]: cannot find type `dyn` in this scope
34 --> $DIR/dyn-trait-compatibility.rs:5:20
35 |
36 LL | type A2 = dyn<dyn, dyn>;
37 | - ^^^ not found in this scope
38 | |
39 | help: you might be missing a type parameter: `<dyn>`
40
41 error[E0412]: cannot find type `dyn` in this scope
42 --> $DIR/dyn-trait-compatibility.rs:9:11
43 |
44 LL | type A3 = dyn<<dyn as dyn>::dyn>;
45 | ^^^ not found in this scope
46
47 error[E0412]: cannot find type `dyn` in this scope
48 --> $DIR/dyn-trait-compatibility.rs:9:16
49 |
50 LL | type A3 = dyn<<dyn as dyn>::dyn>;
51 | - ^^^ not found in this scope
52 | |
53 | help: you might be missing a type parameter: `<dyn>`
54
55 error: aborting due to 8 previous errors
56
57 Some errors have detailed explanations: E0412, E0433.
58 For more information about an error, try `rustc --explain E0412`.