mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
982b49494e
This is to make the diff when stabilizing it easier to review.
13 lines
281 B
Rust
13 lines
281 B
Rust
use std::rc::Rc;
|
|
|
|
union U<T: Copy> {
|
|
a: T
|
|
}
|
|
|
|
fn main() {
|
|
let u = U { a: Rc::new(0u32) };
|
|
//~^ ERROR the trait bound `Rc<u32>: Copy` is not satisfied
|
|
let u = U::<Rc<u32>> { a: Default::default() };
|
|
//~^ ERROR the trait bound `Rc<u32>: Copy` is not satisfied
|
|
}
|