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