mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
161 B
Java
10 lines
161 B
Java
class Super {}
|
|
class Test extends Super{
|
|
String[] f2;
|
|
String f<caret>1;
|
|
|
|
public Test(String f1, String... f2) {
|
|
this.f2 = f2;
|
|
this.f1 = f1;
|
|
}
|
|
} |