DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / methods / method-ambig-two-traits-from-bounds.rs
12345678
trait A { fn foo(&self); } trait B { fn foo(&self); } fn foo<T:A + B>(t: T) { t.foo(); //~ ERROR E0034 } fn main() {}