pull up: ensure varargs as last parameter (IDEA-193132)

This commit is contained in:
Anna Kozlova
2018-06-01 20:04:05 +03:00
parent e8be01101d
commit ce8366714f
4 changed files with 31 additions and 0 deletions
@@ -0,0 +1,10 @@
class Super {}
class Test extends Super{
String[] f2;
String f<caret>1;
public Test(String f1, String... f2) {
this.f2 = f2;
this.f1 = f1;
}
}