about summary refs log tree commit diff
path: root/tests/ui/suggestions/missing-bound-in-derive-copy-impl.rs
blob: 0ffc1b8f7a25e94699cf8339d2f0a65a83a49fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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` cannot be implemented for this type
pub struct AABB<K> {
    pub loc: Vector2<K>,
    //~^ ERROR doesn't implement `Debug`
    //~| ERROR `K: Copy` is not satisfied
    //~| ERROR doesn't implement `Debug`
    //~| ERROR `K: Copy` is not satisfied
    //~| ERROR `K: Copy` is not satisfied
    pub size: Vector2<K>,
    //~^ ERROR doesn't implement `Debug`
    //~| ERROR `K: Copy` is not satisfied
}

fn main() {}