blob: 8025b3af8f1bf5cee7b0216c0b586e4ef5d15acf [file] [log] [blame]
// check-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct A<const N: usize>; // ok
fn main() {}