detect array initializer type based on short variable array notation (IDEA-147881)

This commit is contained in:
Anna Kozlova
2015-11-13 16:07:17 +01:00
parent e1f9d33a32
commit cbbd0e4456
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,6 @@
class Test {
{
Object x = null;
Object[] objs = {x == null ? "N/A" : x};
}
}