Double declare of structures
Posted: Wed Jun 11, 2003 9:47 pm
The editor stop compiling while this:
It would be nice, when the compiler checks the structures. When they are identical, than the compiler should compile normal.
but this:
or this
should give a error.
Code: Select all
structure test
a.w
endstructure
structure test
a.w
endstructure
but this:
Code: Select all
structure test
a.w
endstructure
structure test
B.w
endstructure
Code: Select all
structure test
a.w
endstructure
structure test
a.l
endstructure