DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / issues / issue-21950.rs
123456789101112
trait Add<Rhs=Self> { type Output; } impl Add for i32 { type Output = i32; } fn main() { let x = &10 as &dyn Add; //~^ ERROR E0191 }