blob: e460da2f2c82603b6aa515e5f9a52362124564bd [file] [log] [blame]
//11, 16 -> 11, 19 replaceAll == true, removeDeclaration == true
package p;
import static p.A.getCount2;
import static q.Consts.I;
import static r.Third.B;
import r.Third;
public class A {
public static final int getCount() { return 42; }
public static final int getCount2() { return 42; }
int getIII() {
return I + A.getCount() + getCount2() + Third.A + B;
}
}