Closed
Description
In #1891 (comment) it has been reported that operator overloads don't check nullability on the LHS:
let a // nullable
let b // non-nullable
a + b; // goes silently <-- here
b + a; // compile time error
In #1891 (comment) it has been reported that operator overloads don't check nullability on the LHS:
let a // nullable
let b // non-nullable
a + b; // goes silently <-- here
b + a; // compile time error