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