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

module Test
{

interface Intf1 { void op(); }
interface Intf1 { void op(); }
interface Intf1;

local interface Intf2 { void op(); }
local interface Intf2 { void op(); }
local interface Intf2;

}