rust/tests/ui/repeat-expr/infer.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
322 B
Rust
Raw Normal View History

//@ 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
}