1 2 3 4 5 6 7 8 9 10 11 12
//@ known-bug: #106473 #![feature(generic_const_exprs)] const DEFAULT: u32 = 1; struct V<const U: usize = DEFAULT> where [(); U]:; trait Tr {} impl Tr for V {}