mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
// Checks that `const fn` with const params can be used.
|
|
// run-pass
|
|
|
|
const fn const_u32_identity<const X: u32>() -> u32 {
|
|
X
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(const_u32_identity::<18>(), 18);
|
|
}
|