2018-09-04 12:41:33 -05:00
|
|
|
struct A;
|
|
|
|
|
|
|
|
impl A {
|
2018-09-05 11:56:01 -05:00
|
|
|
//~^ NOTE `Self` type implicitly declared here, by this `impl`
|
2018-09-04 12:41:33 -05:00
|
|
|
fn banana(&mut self) {
|
|
|
|
fn peach(this: &Self) {
|
|
|
|
//~^ ERROR can't use type parameters from outer function
|
|
|
|
//~| NOTE use of type variable from outer function
|
2018-09-05 10:39:50 -05:00
|
|
|
//~| NOTE use a type here instead
|
2018-09-04 12:41:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|