vala-intellij-plugin
vala-intellij-plugin copied to clipboard
Null Coalescing expression type inference should look for next common parent type
Example:
class A { }
class B : A {}
class C: A {}
int main(string [] args) {
var c = new class B() ?? new class C();
}
inferred type of c
should be A