mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
370 B
Rust
16 lines
370 B
Rust
// revisions: mirunsafeck thirunsafeck
|
|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
|
|
|
|
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
|
|
}
|