mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
14 lines
325 B
Java
14 lines
325 B
Java
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
class MyTest {
|
|
public MyTest(String s, List<String> l, String s2) {
|
|
}
|
|
|
|
public MyTest(String s, int i) {
|
|
}
|
|
|
|
{
|
|
new MyTest("", <error descr="Incompatible types. Found: 'java.util.List<java.lang.Object>', required: 'int'">Collections.emptyList()</error>);
|
|
}
|
|
} |