blob: 552e2a15c23b0870320feb6902a0063f0d255902 [file] [log] [blame] [edit]
// 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
//~| ERROR type annotations needed
}