SOE with numeric conditional expressions when expression inside is not standalone

EA-78419 - SOE: InferenceSessionContainer.infer
This commit is contained in:
Anna Kozlova
2016-01-27 13:57:06 +03:00
parent ec89fa2295
commit c06f66ab26
4 changed files with 44 additions and 8 deletions
@@ -0,0 +1,14 @@
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());
}
}