about summary refs log tree commit diff
path: root/tests/ui/resolve/use-self-in-inner-fn.rs
blob: 62f9dc5664ffe7021e49113342a88609495d8e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct A;

impl A {
//~^ NOTE `Self` type implicitly declared here, by this `impl`
    fn banana(&mut self) {
        fn peach(this: &Self) {
        //~^ ERROR can't use `Self` from outer item
        //~| NOTE use of `Self` from outer item
        //~| NOTE refer to the type directly here instead
        }
    }
}

fn main() {}