mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
error: expected identifier, found keyword `dyn`
|
|
--> $DIR/dyn-trait-compatibility.rs:4:16
|
|
|
|
|
LL | type A1 = dyn::dyn;
|
|
| ^^^ expected identifier, found keyword
|
|
|
|
|
help: escape `dyn` to use it as an identifier
|
|
|
|
|
LL | type A1 = dyn::r#dyn;
|
|
| ++
|
|
|
|
error: expected identifier, found `<`
|
|
--> $DIR/dyn-trait-compatibility.rs:5:14
|
|
|
|
|
LL | type A2 = dyn<dyn, dyn>;
|
|
| ^ expected identifier
|
|
|
|
error: aborting due to 2 previous errors
|
|
|