Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
const-generics
/
generic_const_exprs
/
inline-const-in-const-generic-defaults.rs
blob: 073e0fe0a7fdb6abf8a274f31c1b8aff4fd3a7fe [
file
] [
log
] [
blame
]
//@ check-pass
#![
feature
(
generic_const_exprs
)]
#![
allow
(
incomplete_features
)]
pub
struct
ConstDefaultUnstable
<
const
N
:
usize
=
{
const
{
3
}
}>;
pub
fn
main
()
{}