blob: 161bfaab48aded5312667e89da11f1c9fe9e729b (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | // 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);
}
 |