E3076 Types Errors

Types

maps cannot be compared with comparison operators; use maps.is_equal(a, b) for equality (maps have no defined ordering)

When this occurs

This error is triggered when: maps cannot be compared with comparison operators; use maps.is_equal(a, b) for equality (maps have no defined ordering)

Example error message

error[E3076]: maps cannot be compared with comparison operators; use maps.is_equal(a, b) for equality (maps have no defined ordering)

How to fix

Review the error message and check your code at the indicated location. The message describes what went wrong — fix the underlying issue it identifies.

Related errors

No related errors.