blob: 4878a35ffe5fb1083ddd2058168a382bc7417423 [file] [log] [blame] [edit]
//@ known-bug: #117460
#![feature(generic_const_exprs)]
struct Matrix<D = [(); 2 + 2]> {
d: D,
}
impl Matrix {}