summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/ExceptionRedefinition.ice
blob: 2081dc891fde485e64bc0aadb08cf8ad56d6b9c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

module Test
{

exception Base {}
exception Base { int i; }
exception Derived extends Base { int j; }
exception Derived { int j; }

}