mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
afa0706bfc
GitOrigin-RevId: 5f97ec808f753d9ca40c417704ec93a802512745
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>);
|
|
}
|
|
} |