summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/InterfaceRedefinition.ice
blob: f4177e6c711b2f27114228c67bcbb1c9f9ba79d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// **********************************************************************
//
// Copyright (c) 2003-present 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;

}