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