mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
572 B
Rust
19 lines
572 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)]
|
|
pub struct AABB<K: Debug + std::marker::Copy + std::marker::Copy + std::marker::Copy + std::marker::Copy> {
|
|
pub loc: Vector2<K>, //~ ERROR the trait bound `K: Copy` is not satisfied
|
|
//~^ ERROR the trait bound `K: Copy` is not satisfied
|
|
//~| ERROR the trait bound `K: Copy` is not satisfied
|
|
pub size: Vector2<K>, //~ ERROR the trait bound `K: Copy` is not satisfied
|
|
}
|
|
|
|
fn main() {}
|