Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
rustdoc
/
const-generics
/
const-generic-defaults.rs
blob: 7a0a794112d2d08bf2b0db79ae0c91b3cb94cf76 [
file
]
#![
crate_name
=
"foo"
]
// @has foo/struct.Foo.html '//pre[@class="rust item-decl"]' \
// 'pub struct Foo<const M: usize = 10, const N: usize = M, T = i32>('
pub
struct
Foo
<
const
M
:
usize
=
10
,
const
N
:
usize
=
M
,
T
=
i32
>(
T
);