]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/const-fn-with-const-param.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / const-generics / const-fn-with-const-param.rs
1 // Checks that `const fn` with const params can be used.
2 // run-pass
3
4 const fn const_u32_identity<const X: u32>() -> u32 {
5 X
6 }
7
8 fn main() {
9 assert_eq!(const_u32_identity::<18>(), 18);
10 }