Page 1 of 1

Double declare of structures

Posted: Wed Jun 11, 2003 9:47 pm
by GPI
The editor stop compiling while this:

Code: Select all

  structure test
     a.w
  endstructure
  structure test
     a.w
  endstructure
It would be nice, when the compiler checks the structures. When they are identical, than the compiler should compile normal.

but this:

Code: Select all

  structure test
     a.w
  endstructure
  structure test
     B.w
  endstructure
or this

Code: Select all

  structure test
     a.w
  endstructure
  structure test
     a.l
  endstructure
should give a error.