// example of bug in export/import. // declare of something of type B_type in this module generates correct code, // but declaring same thing in another module (IMPBUG2) does not. Module IMPBUG Export B_type Declare A_type is Structure A_1: integer A_2: integer EndStructure B_type is Structure B_1: integer initially 7 B_2: A_type initially A_type ( A_1: 7, A_2: 9 ) EndStructure EndDeclare EndModule