DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / associated-types / issue-22560.rs
123456789101112
trait Add<Rhs=Self> { type Output; } trait Sub<Rhs=Self> { type Output; } type Test = dyn Add + Sub; //~^ ERROR E0225 fn main() { }