E5018 Usage Errors

Usage

embed() cannot open '%s': file not found or unreadable

When this occurs

Function calls itself too many times without returning

Example error message

error[E5018]: maximum recursion depth exceeded (limit: 1000)

How to fix

Add a base case to your recursive function to stop the recursion, or rewrite using iteration.

Related errors

No related errors.