%description: Check inheritance for structs %file: test.msg namespace @TESTNAME@; struct Base { int b; } struct MyStruct extends Base { char c; }; %includes: #include "test_m.h" %activity: #define PRINT(X) EV << #X << ":" << X << endl MyStruct x; x.b = 11; PRINT(x.b); x.c = 'x'; PRINT(x.c); %contains: stdout x.b:11 x.c:x