mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00

These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
17 lines
524 B
Rust
17 lines
524 B
Rust
//@ edition: 2015
|
|
|
|
type A0 = dyn;
|
|
//~^ ERROR cannot find type `dyn` in this scope
|
|
type A1 = dyn::dyn;
|
|
//~^ ERROR use of unresolved module or unlinked crate `dyn`
|
|
type A2 = dyn<dyn, dyn>;
|
|
//~^ ERROR cannot find type `dyn` in this scope
|
|
//~| ERROR cannot find type `dyn` in this scope
|
|
//~| ERROR cannot find type `dyn` in this scope
|
|
type A3 = dyn<<dyn as dyn>::dyn>;
|
|
//~^ ERROR cannot find type `dyn` in this scope
|
|
//~| ERROR cannot find type `dyn` in this scope
|
|
//~| ERROR cannot find trait `dyn` in this scope
|
|
|
|
fn main() {}
|