summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/dyn-trait-compatibility.rs
blob: d2b02cc2af5432bea42e7bef9aed3eb3187ec350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
type A0 = dyn;
//~^ ERROR cannot find type `dyn` in this scope
type A1 = dyn::dyn;
//~^ ERROR use of undeclared crate or module `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 use of undeclared crate or module `dyn`

fn main() {}