summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/dyn-trait-compatibility.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/dyn-trait-compatibility.rs')
-rw-r--r--src/test/ui/parser/dyn-trait-compatibility.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/parser/dyn-trait-compatibility.rs b/src/test/ui/parser/dyn-trait-compatibility.rs
deleted file mode 100644
index d2b02cc2a..000000000
--- a/src/test/ui/parser/dyn-trait-compatibility.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-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() {}