summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3941_Regression/test.idl
blob: a6b184c1c75618c5d5eb69d611b73d2130c0e3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module test {
    abstract valuetype EventBase { };

    valuetype event0 : EventBase
    {
        public string message;
    };

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