about summary refs log tree commit diff
path: root/tests/crashes/117460.rs
blob: 4878a35ffe5fb1083ddd2058168a382bc7417423 (plain)
1
2
3
4
5
6
7
8
//@ known-bug: #117460
#![feature(generic_const_exprs)]

struct Matrix<D = [(); 2 + 2]> {
    d: D,
}

impl Matrix {}