Sign in
◑
Theme
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
const-generics
/
auxiliary
/
const_generic_lib.rs
blob: 922f92d9feb71a44337bf4c5b948c1eaf44c77b1 [
file
]
pub
struct
Struct
<
const
N
:
usize
>(
pub
[
u8
;
N
]);
pub
type
Alias
=
Struct
<
2
>;
pub
fn
function
(
value
:
Struct
<
3
>)
->
u8
{
value
.
0
[
0
]
}