Code: Select all
Prototype proto(*pram.str1, *pram.str2)
Structure str1
*s.str2
EndStructure
Structure str2
l.l
EndStructure
When I comment this line is the code OK (although I use str2 in the str1 - Structure).
Code: Select all
Prototype proto(*pram.str1, *pram.str2)
Structure str1
*s.str2
EndStructure
Structure str2
l.l
EndStructure
Code: Select all
Structure str1
*s.str2
EndStructure
Structure str2
l.l
EndStructure
Prototype proto(*pram.str1, *pram2.str2)
Code: Select all
Structure str1
*s.str2
EndStructure
Prototype proto(*pram.str1, *pram2.str2)
Structure str2
l.proto
EndStructure