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.

11 lines
161 B
Rust
Raw Normal View History

#[derive(Copy, Clone)]
pub struct Foo {
x: [u8; SIZE],
//~^ ERROR mismatched types
2024-01-23 09:23:22 -06:00
//~| ERROR mismatched types
}
const SIZE: u32 = 1;
fn main() {}