Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
auxiliary
/
legacy-const-generics.rs
blob: 67352a2fbbb1cc689e3b0fb0939804c58a7d7981 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustc_attrs
)]
#[
rustc_legacy_const_generics
(
1
)]
pub
fn
foo
<
const
Y
:
usize
>(
x
:
usize
,
z
:
usize
)
->
[
usize
;
3
]
{
[
x
,
Y
,
z
]
}