Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting7/AmbiguousStaticImportMethod.java
2019-01-02 16:35:41 +01:00

9 lines
235 B
Java

package pck;
import static pck.A.*;
import static pck.B.*;
class Test {
public static void main(String[] args) {
bar<error descr="Ambiguous method call: both 'A.bar(Object)' and 'B.bar(Object)' match">("")</error>;
}
}