mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
pull up: ensure varargs as last parameter (IDEA-193132)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user