regression test for issue 90847

This commit is contained in:
cameron 2022-01-31 16:56:10 +00:00
parent 21b4a9cfdc
commit 9118393334

View file

@ -0,0 +1,9 @@
// check-pass
#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
#![feature(adt_const_params)]
struct Foo<const A: [(); 0 + 0]> where [(); 0 + 0]: Sized;
fn main() {}