rust/src/test/ui/const-generics/const-fn-with-const-param.rs

13 lines
381 B
Rust

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
const fn const_u32_identity<const X: u32>() -> u32 {
//~^ ERROR const parameters are not permitted in `const fn`
//~^^ ERROR const generics in any position are currently unsupported
X
}
fn main() {
println!("{:?}", const_u32_identity::<18>());
}