Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/functionalInterface/TwoMethodsNoSubSignature1.java
2012-07-18 11:45:29 +02:00

4 lines
206 B
Java

interface X { int m(Iterable<String> arg, Class c); }
interface Y { int m(Iterable arg, Class<?> c); }
interface Foo extends X, Y {}
// Not functional: No method has a subsignature of all abstract methods