summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-parameter-defaults-referencing-Self-ppaux.rs
blob: 444453dc69437c05726106fd4cbb1710858e0dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test a default that references `Self` which is then used in an
// object type. Issue #18956. In this case, the value is supplied by
// the user, but pretty-printing the type during the error message
// caused an ICE.

trait MyAdd<Rhs=Self> { fn add(&self, other: &Rhs) -> Self; }

impl MyAdd for i32 {
    fn add(&self, other: &i32) -> i32 { *self + *other }
}

fn main() {
    let x: i32 = 5;
    let y = x as dyn MyAdd<i32>;
    //~^ ERROR E0038
    //~| ERROR cast to unsized type: `i32` as `dyn MyAdd<i32>`
}