the following snippet didn't run when parentheses are used with StructureUnion, isn't strange?
Code: Select all
Structure wrdbyte
StructureUnion
word.w
byte.b[2]
EndStructureUnion
EndStructure
Define xx.wrdbyte
xx\byte[0]+1 ; good
(xx\byte[0])+1 ; error


