In https://github.com/AssemblyScript/assemblyscript/issues/1891#issuecomment-930760909 it has been reported that operator overloads don't check nullability on the LHS: ```ts 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: