testdata for IDEA-148469

This commit is contained in:
Anna Kozlova
2018-08-20 19:18:33 +03:00
parent 9027a5ad06
commit 5819745279
3 changed files with 21 additions and 0 deletions
@@ -0,0 +1,9 @@
import java.util.*;
class A {
private static final List<String> LIST = Collections.emptyList();
void m(boolean b) {
List<String> l = b ? new ArrayList<String>() : LI<caret>ST;
}
}