summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-bound-in-derive-copy-impl-2.fixed
blob: ac0b14fba83b620ec2c032ad50eee86777cd8a37 (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)]
pub struct AABB<K: Debug + std::marker::Copy>{
    pub loc: Vector2<K>, //~ ERROR the trait bound `K: Copy` is not satisfied
    pub size: Vector2<K>
}

fn main() {}