Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
const-generics
/
promotion.rs
blob: 7229c2570a750dc730d163853f498797f25502c5 [
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
);
}