// Checks that `const fn` with const params can be used. // run-pass const fn const_u32_identity() -> u32 { X } fn main() { assert_eq!(const_u32_identity::<18>(), 18); }