Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
issues
/
issue-61432.rs
blob: 329bf24922e6b96d43f0a7c72a673ea5c86945ba [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
promote
<
const
N
:
i32
>()
{
let
_
=
&
N
;
}
fn
main
()
{
promote
::<
0
>();
}