summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/InterfaceRedefinition.ice
blob: 49aed46057a4f8b109d2489b9e924a4b71d5a24e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

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

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