summary refs log tree commit diff
path: root/src/test/ui/const-generics/cannot-infer-const-args.rs
blob: e1061c6d1a33d7a122951e24814f543cc2c36c5d (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash

fn foo<const X: usize>() -> usize {
    0
}

fn main() {
    foo(); //~ ERROR type annotations needed
}