0326
Summary: |
A literal is passed as a variable to a function that wants to return a value. |
---|---|
Cause: |
A literal is passed as a variable to a function that wants to return a value.You attempted to assign a value to a literal. You can't. |
Remedy: |
Put the value into a variable and pass the variable instead.Do not expect the variable to have the same value when it has returned from the function call |