Sign in
rust
/
rust
/
7253b2ba610be3cfdfd391de9af8ec461a2dee27
/
.
/
tests
/
ui
/
const-generics
/
generic_const_exprs
/
direct-inline-const-generic-default.rs
blob: 358d0d997cae8976cb05555c6f5450751fe58670 [
file
]
//@ check-pass
// Regression test for https://github.com/rust-lang/rust/issues/159063.
#![
feature
(
generic_const_exprs
)]
#![
feature
(
min_generic_const_args
)]
struct
S
<
const
N
:
usize
=
const
{
0
}>;
fn
main
()
{}