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 ```