blob: 778b26d036d5d13da121cf01c9d7aadfbf00a4ad [file] [log] [blame]
//9, 18 -> 9, 25 AllowLoadtime == true
package p;
class R {
int r;
static class S extends R {
String f() {
fish(super.r);
return null;
}
static void fish(int parm) {
}
}
}