summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-32122-2.fixed
blob: cee0e59297657dcd37b55295abad0cf2274373bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// run-rustfix
use std::ops::Deref;
struct Bar(u8);
struct Foo(Bar);
struct Emm(Foo);
impl Deref for Bar{
    type Target = u8;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl Deref for Foo {
    type Target = Bar;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl Deref for Emm {
    type Target = Foo;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
fn main() {
    let a = Emm(Foo(Bar(0)));
    // Should suggest `&***` even when deref is pretty deep
    let _: *const u8 = &***a; //~ ERROR mismatched types
}