diff options
Diffstat (limited to 'tests/ui/traits/issue-50480.rs')
-rw-r--r-- | tests/ui/traits/issue-50480.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/traits/issue-50480.rs b/tests/ui/traits/issue-50480.rs new file mode 100644 index 000000000..005939e0c --- /dev/null +++ b/tests/ui/traits/issue-50480.rs @@ -0,0 +1,15 @@ +#[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 + +#[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 + +fn main() {} |