2018-09-04 10:41:33 -07:00
|
|
|
struct A;
|
|
|
|
|
|
|
|
impl A {
|
2018-09-05 09:56:01 -07:00
|
|
|
//~^ NOTE `Self` type implicitly declared here, by this `impl`
|
2018-09-04 10:41:33 -07:00
|
|
|
fn banana(&mut self) {
|
|
|
|
fn peach(this: &Self) {
|
2023-09-10 23:06:14 +02:00
|
|
|
//~^ ERROR can't use generic parameters from outer item
|
|
|
|
//~| NOTE use of generic parameter from outer item
|
|
|
|
//~| NOTE refer to the type directly here instead
|
2018-09-04 10:41:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|