smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / afterNew / LastArgInInnerNewBefore2.java
blob94d848f456da5d76c7e00206feb36c35433ae978
1 class B {
2 private static int getSeed() { return 0; }
3 class A {
4 A(int i) {}
6 public static void main(String[] args) {
7 new A(get<caret>).show();