mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
18 lines
514 B
Rust
18 lines
514 B
Rust
//@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` cannot be implemented for this type
|
|
pub struct AABB<K: Copy + Debug + std::fmt::Debug + std::fmt::Debug + std::fmt::Debug>{
|
|
pub loc: Vector2<K>, //~ ERROR `K` doesn't implement `Debug`
|
|
//~^ ERROR `K` doesn't implement `Debug`
|
|
pub size: Vector2<K> //~ ERROR `K` doesn't implement `Debug`
|
|
}
|
|
|
|
fn main() {}
|