mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
220 B
Rust
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);
|
|
}
|