mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
11 lines
200 B
Java
11 lines
200 B
Java
package p;
|
|
|
|
import static p.A.of;
|
|
import static p.B.of;
|
|
|
|
class Test {
|
|
{
|
|
of(1, 2, 3);
|
|
of<error descr="Ambiguous method call: both 'A.of(Integer)' and 'B.of(Integer)' match">(4)</error>;
|
|
}
|
|
} |