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