rust/tests/ui/const-generics/promotion.rs

10 lines
220 B
Rust

//@ 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);
}