blob: ca6a2ebecc4c878ac3409ec4e178ed30d708475f [file] [log] [blame]
package p;
import static p.C.mock;
class C {
public static String mock() {
return null;
}
}
class D {
public static final String CONST = mock();
}
class QTest {
public static void main(String[] args) {
String s = D.CON<caret>ST;
}
}