mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 02:33:55 +00:00
17 lines
327 B
Rust
17 lines
327 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` may not be implemented for this type
|
|
pub struct AABB<K: Copy>{
|
|
pub loc: Vector2<K>,
|
|
pub size: Vector2<K>
|
|
}
|
|
|
|
fn main() {}
|