surround with array fix: disable for non-denotable types (IDEA-173797)

This commit is contained in:
Anna Kozlova
2017-06-05 17:20:27 +03:00
parent 0d1b2368ed
commit 6423538939
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
// "Surround with array initialization" "false"
class A {
void m1(String[] s,
String[] s2,
String[] s3) {}
{
m1( <caret>null, null);
}
}