summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/missing-bound-in-derive-copy-impl-3.fixed
blob: 304360d48a2615627d197d784e8f187a253d04cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//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)] //~ ERROR the trait `Copy` may not be implemented for this type
pub struct AABB<K: Copy + Debug>{
    pub loc: Vector2<K>,
    pub size: Vector2<K>
}

fn main() {}