blob: 7bc4f3986eb754ba7160739f6dadc49142f7282b [file] [log] [blame]
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
#[derive(PartialEq, Eq)]
struct A;
struct B<const X: A>; // ok
struct C;
struct D<const X: C>; //~ ERROR the types of const generic parameters must derive
fn main() {}