blob: aa9bf4754a40941b9116b04c4fbe741f0ddb2b75 [file] [log] [blame]
public class Foo {
public int myData;
int <caret>method(int i) {
new Runnable () {
void f() {};
public void run() {
this.f(myData);
}
}
return this.myData + myData;
}
}