rust/tests/ui/const-generics/infer/uninferred-consts.rs
2023-01-11 09:32:08 +00:00

12 lines
300 B
Rust

// Test that we emit an error if we cannot properly infer a constant.
// taken from https://github.com/rust-lang/rust/issues/70507#issuecomment-615268893
struct Foo;
impl Foo {
fn foo<const A: usize, const B: usize>(self) {}
}
fn main() {
Foo.foo();
//~^ ERROR type annotations needed
}