rust/tests/ui/const-generics/bad-generic-in-copy-impl.rs

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

10 lines
129 B
Rust
Raw Normal View History

#[derive(Copy, Clone)]
pub struct Foo {
x: [u8; SIZE],
//~^ ERROR mismatched types
}
const SIZE: u32 = 1;
fn main() {}