summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-21950.rs
blob: 72a98bd8ddd8a7ba9f9aefc8cbc86b4e82102e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
trait Add<Rhs=Self> {
    type Output;
}

impl Add for i32 {
    type Output = i32;
}

fn main() {
    let x = &10 as &dyn Add;
    //~^ ERROR E0393
    //~| ERROR E0191
}