E3002 Type Errors

invalid-operator-for-type

operator not valid for type

When this occurs

`"hello" * "world"`

Example error message

error[E3002]: unknown operator: STRING * STRING

How to fix

Use an operator that is valid for this type. For example, you cannot use `*` on strings.

Related errors