about summary refs log tree commit diff
path: root/tests/ui/type/type-parameter-defaults-referencing-Self-ppaux.rs
blob: b877ef569f6dc2c4e362a80069886ada0e482de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
}