E3014 Type Errors

incompatible-binary-types

incompatible types for binary operator

When this occurs

`1 + "hello"`

Example error message

error[E3014]: incompatible types for operator '+': INTEGER and STRING

How to fix

Both operands must be compatible types. Convert one operand to match the other.

Related errors