about summary refs log tree commit diff
path: root/tests/crashes/136138.rs
blob: c3893dc9c8e6761f24ab29f3c1ff7e309353b6d6 (plain)
1
2
3
4
5
6
7
//@ known-bug: #136138
#![feature(min_generic_const_args)]
struct U;
struct S<const N: U>()
where
    S<{ U }>:;
fn main() {}