blob: bba17791f2062b9ea1ebaf5845bb42d8c461c758 [file] [log] [blame]
public class Foo {
public int myData;
static int <caret>method(Foo anObject, int i) {
return anObject.myData + i;
}
}
public class Bar extends Foo {
int method(int b) {
return super.method(this, b*2);
}
}