1 2 3 4 5 6 7 8
//@ check-pass #![feature(generic_const_exprs)] #![allow(incomplete_features)] pub struct ConstDefaultUnstable<const N: usize = { const { 3 } }>; pub fn main() {}