E5011 Runtime Errors
return-value-unused
function return value not used
When this occurs
Ignoring return without `@ignore`
Example error message
error[E5011]:
return value from function not used (use @ignore to discard)
How to fix
Assign the return value to a variable or explicitly ignore it if not needed.
Related errors
No related errors.