blob: 6c9b119de74114829470e5ea590521316f95c342 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | use std::fmt::Debug;
trait Foo {
    fn foo<A: Debug>(&self, a: &A, b: &impl Debug);
}
impl Foo for () {
    fn foo<B: Debug>(&self, a: &impl Debug, b: &B) { }
    //~^ ERROR method `foo` has an incompatible type for trait
}
fn main() {}
 |