Files
openide/java/java-tests/testData/codeInsight/completion/normal/ClassNameWithInnersTab_after.java
Tagir Valeev a64960d971 [java-completion] IDEA-63639 Completion after new offers in list classes with private constructors
GitOrigin-RevId: 141336a239f027b0eb5cc9f2f783f1415eeb5f76
2020-11-19 05:49:13 +00:00

16 lines
204 B
Java

public class TestClass {
public TestClass create() {
final int value = 1;
return new Xxx(<caret>value);
}
}
class Xxx {
Xxx(String x) {
}
static class Yyy {
}
}