summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed')
-rw-r--r--src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed b/src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed
deleted file mode 100644
index 32a7215c5..000000000
--- a/src/test/ui/suggestions/missing-bound-in-manual-copy-impl.fixed
+++ /dev/null
@@ -1,9 +0,0 @@
-// run-rustfix
-
-#[derive(Clone)]
-struct Wrapper<T>(T);
-
-impl<S: Copy> Copy for Wrapper<S> {}
-//~^ ERROR the trait `Copy` may not be implemented for this type
-
-fn main() {}