mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
SOE with numeric conditional expressions when expression inside is not standalone
EA-78419 - SOE: InferenceSessionContainer.infer
This commit is contained in:
+14
@@ -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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user