mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-21 03:57:38 +00:00
10 lines
192 B
Rust
10 lines
192 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
#![feature(generic_const_exprs)]
|
||
|
#![feature(inline_const)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
pub struct ConstDefaultUnstable<const N: usize = { const { 3 } }>;
|
||
|
|
||
|
pub fn main() {}
|