1016 - Unexpected character '%c' following variable name.
Description
Following the declaration of a variable, and unexpected or unsupported character was found where an operator was expected.
Example
Config:
.MyVarA = 10
.MyVarB. = 20
Output:
c:\Test\fbuild.bff(2):(8) FASTBuild Error #1016 - Unexpected character '.' following variable name.
(Expected operator)
.MyVarB. = 20
^
\--here
Fix:
.MyVarA = 10
.MyVarB = 20