mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 02:02:52 +00:00
10 lines
150 B
Rust
10 lines
150 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);
|
|
}
|