blob: c4a5ca1c8eb788b0b30c5d494845ca074710a272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
module Test
{
exception Base {}
exception Base { int i; }
exception Derived extends Base { int j; }
exception Derived { int j; }
}
|