Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/graphInference/PolyConditionalExpressionWithTargetPrimitive.java

26 lines
611 B
Java

class Conditional {
void m(Object p, boolean b) {
int a = b ? <error descr="Incompatible types. Found: 'null', required: 'int'">null</error> : ((Getter<Integer>) p).get();
int a1 = b ? <error descr="Incompatible types. Found: 'null', required: 'int'">null</error> : Conditional.<Integer>f();
int a2 = b ? null : 1;
int a3 = b ? null : f1();
int a4 = b ? null : f2();
}
private static <T> T f() {
return null;
}
private static int f1() {
return 1;
}
private static <T extends Integer, S extends T> S f2() {
return null;
}
}
interface Getter<A> {
A get();
}