Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
const-generics
/
promotion.rs
blob: ce9a1a0feb42070c573ae3dd7b2b2b2b964c749f [
file
] [
log
] [
blame
]
// run-pass
// tests that promoting expressions containing const parameters is allowed.
fn
promotion_test
<
const
N
:
usize
>()
->
&
'
static
usize
{
&(
3
+
N
)
}
fn
main
()
{
assert_eq
!(
promotion_test
::<
13
>(),
&
16
);
}