blob: 2219a6cb5fa19e6b32b778c84a364bf2d0607adc [file] [log] [blame] [edit]
//@ known-bug: rust-lang/rust#126182
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
struct Cond<const B: bool>;
struct Thing<T = Cond<0>>(T);
impl Thing {}