smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / afterNew / LastArgInInnerNewAfter.java
blob63728c238d9b0e9ef76c6326294dee65c6fb7cf0
1 class B {
2 class A {
3 A(int i) {}
5 static B createB(A a) {}
6 public static void main(String[] args) {
7 int i;
8 foo(createB(new A(i)<caret>));