blob: e3cc5557f42cc1c524bc124b68354d65d3c86531 [file] [log] [blame]
trait A { fn foo(&self); }
trait B { fn foo(&self); }
fn foo<T:A + B>(t: T) {
t.foo(); //~ ERROR E0034
}
fn main() {}