[omniORB] omniidl2 bug ?????
Douglas Kosovic
douglask@dstc.edu.au
Sun, 20 Jun 1999 18:05:14 +1000
Hi,
I just want to report a possible bug using omniidl2 (various versions
and platforms).
I get a core dump using omniidl2 with IDL that contains a forward
reference which is used in a typedef. A simple IDL file which reproduces
the problem is listed below:
interface RefObject;
typedef RefObject DesignatorType;
exception InvalidDesignator {
DesignatorType designator; //the trouble-maker line!
};
interface RefObject {
attribute boolean foo;
};
Cheers,
Doug.