E2021 Parse Errors

reserved-function-name

function name is reserved

When this occurs

Using builtin as function name

Example error message

error[E2021]: 'len' is a reserved keyword and cannot be used as a function name

How to fix

Choose a different function name. Built-in names and reserved words cannot be used.

Related errors