summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs')
-rw-r--r--src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs b/src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs
deleted file mode 100644
index 31f8cd6fc..000000000
--- a/src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// run-rustfix
-use std::fmt::Debug;
-
-#[derive(Debug, Copy, Clone)]
-pub struct Vector2<T: Debug + Copy + Clone>{
- pub x: T,
- pub y: T
-}
-
-#[derive(Debug, Copy, Clone)]
-pub struct AABB<K: Debug>{
- pub loc: Vector2<K>, //~ ERROR the trait bound `K: Copy` is not satisfied
- pub size: Vector2<K>
-}
-
-fn main() {}