blob: 11ee6af24139246120893f998557e023abb214fd [file] [log] [blame]
//@ check-pass
// This test confirms that the types can be inferred correctly for this example with const
// generics. Previously this would ICE, and more recently error.
struct Foo<const NUM_BYTES: usize>(pub [u8; NUM_BYTES]);
fn main() {
let _ = Foo::<3>([1, 2, 3]);
}