]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/cannot-infer-const-args.rs
pin docs: add some forward references
[rust.git] / src / test / ui / const-generics / cannot-infer-const-args.rs
1 #![feature(const_generics)]
2 //~^ WARN the feature `const_generics` is incomplete
3
4 fn foo<const X: usize>() -> usize {
5     0
6 }
7
8 fn main() {
9     foo(); //~ ERROR type annotations needed
10 }