rust/tests/ui/const-generics/const-fn-with-const-param.rs
2023-01-11 09:32:08 +00:00

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