DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / const-generics / bad-generic-in-copy-impl.rs
123456789
#[derive(Copy, Clone)] pub struct Foo { x: [u8; SIZE], //~^ ERROR mismatched types } const SIZE: u32 = 1; fn main() {}