EA-91047 - IOE: PsiJavaParserFacadeImpl.createExpressionFromText

This commit is contained in:
Anna.Kozlova
2016-11-02 16:02:39 +01:00
parent 15ca425f25
commit 8067101fcf
3 changed files with 23 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
// "Add 'new List[]'" "true"
import java.util.List;
class c {
void f(List<String> l) {
List<String>[] a;
a = new List[]{l};
}
}

View File

@@ -0,0 +1,8 @@
// "Add 'new List[]'" "true"
import java.util.List;
class c {
void f(List<String> l) {
List<String>[] a;
a = <caret>{l};
}
}