mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
13 lines
199 B
Java
13 lines
199 B
Java
class C {
|
|
/**
|
|
* @param s
|
|
*/
|
|
void method(String... s) {
|
|
System.out.println(s[<selection>0</selection>]);
|
|
}
|
|
|
|
{
|
|
method("a", "b", "c");
|
|
method();
|
|
}
|
|
} |