// run-pass #![feature(const_generics)] //~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash trait IsZeroTrait{} impl IsZeroTrait<{0u8 == 0u8}> for () {} impl IsZeroTrait for ((),) {} fn main() {}