Files
openide/java/java-tests/testData/codeInsight/completion/reflection/ClassForNameInvalidPackage.java
T
Aleksey Rostovskiy 185284cee6 get rid of intellij.build.toolbox.litegen parameter and use BuildOptions.TOOLBOX_LITE_GEN_STEP to skip it instead
GitOrigin-RevId: 9aac8ee4ed1ebf2a29de18a238825fafb1ab88f9
2019-05-27 15:08:08 +03:00

5 lines
111 B
Java

class Main {
void foo() throws ReflectiveOperationException {
Class.forName("com.foooooo.<caret>");
}
}