mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 14:01:44 +07:00
- update language levels partially - fix tests GitOrigin-RevId: 8d7b599772eda8dfd999bee9f816ec2609be4adb
10 lines
353 B
Java
10 lines
353 B
Java
|
|
class Test {
|
|
public void test(String... <warning descr="Parameter 'a' is never used">a</warning>){}
|
|
|
|
public void test(int... <warning descr="Parameter 'a' is never used">a</warning>){}
|
|
|
|
public static void main() {
|
|
new Test().test<error descr="Ambiguous method call: both 'Test.test(String...)' and 'Test.test(int...)' match">()</error>;
|
|
}
|
|
} |