0326

From BR Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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