summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-50480.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-50480.rs')
-rw-r--r--src/test/ui/issues/issue-50480.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-50480.rs b/src/test/ui/issues/issue-50480.rs
new file mode 100644
index 000000000..10597caf5
--- /dev/null
+++ b/src/test/ui/issues/issue-50480.rs
@@ -0,0 +1,17 @@
+#[derive(Clone, Copy)]
+//~^ ERROR the trait `Copy` may not be implemented for this type
+struct Foo(N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
+//~^ ERROR cannot find type `NotDefined` in this scope
+//~| ERROR cannot find type `NotDefined` in this scope
+//~| ERROR cannot find type `N` in this scope
+//~| ERROR cannot find type `N` in this scope
+//~| ERROR `i32` is not an iterator
+
+#[derive(Clone, Copy)]
+//~^ ERROR the trait `Copy` may not be implemented for this type
+struct Bar<T>(T, N, NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
+//~^ ERROR cannot find type `NotDefined` in this scope
+//~| ERROR cannot find type `N` in this scope
+//~| ERROR `i32` is not an iterator
+
+fn main() {}