mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: c83193e8b72f9730e1102220f7a12c35e2722223
12 lines
424 B
Java
12 lines
424 B
Java
class Test {
|
|
interface I { Object in<EOLError descr="';' expected"></EOLError>
|
|
<error descr="Method return type missing">voke</error>(); }
|
|
interface IStr { String foo(); }
|
|
|
|
public static void call(IStr str) {}
|
|
public static void call(I i) { }
|
|
|
|
public static void main(String[] args) {
|
|
call<error descr="Ambiguous method call: both 'Test.call(IStr)' and 'Test.call(I)' match">(()-> null)</error>;
|
|
}
|
|
} |