blob: eb47b5f462f9c74fb9912c30329eb8945a6c1efc [file] [log] [blame] [edit]
//@ check-pass
#[derive(Clone, Default)]
struct MaybeCopy<T>(T);
impl Copy for MaybeCopy<u8> {}
fn is_copy<T: Copy>(x: T) {
println!("{}", std::any::type_name::<T>());
}
fn main() {
is_copy(MaybeCopy::default());
[MaybeCopy::default(); 13];
// didn't work, because `Copy` was only checked in the mir
}