mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 21:02:04 +00:00
10 lines
151 B
Rust
10 lines
151 B
Rust
//@ run-pass
|
|
fn const_u32_identity<const X: u32>() -> u32 {
|
|
X
|
|
}
|
|
|
|
fn main() {
|
|
let val = const_u32_identity::<18>();
|
|
assert_eq!(val, 18);
|
|
}
|