blob: ebc6fe1412320cc1c775ac625bb44967f8cd019b (
plain)
1
2
3
4
5
6
7
8
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() {}
|