DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-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() {}