Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/graphInference/StopAtStandaloneConditional.java
Anna Kozlova c06f66ab26 SOE with numeric conditional expressions when expression inside is not standalone
EA-78419 - SOE: InferenceSessionContainer.infer
2016-01-27 13:57:06 +03:00

15 lines
177 B
Java

class C {
static <M extends Integer> M foo() {
return null;
}
<G> G bar(G g, G gg) {
return g;
}
void m(boolean b){
bar(b ? foo() : null, foo());
}
}