summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3941_Regression/test.idl
blob: 6bb4c5056becf9b084365f3df306362e1688b800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $Id$

module test {
    abstract valuetype EventBase { };

    valuetype event0 : EventBase
    {
        public string message;
    };

    valuetype event1 : EventBase
    {
        public long l;
    };
};