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

module Test
{

sequence<int> Sequence1;
interface Sequence1;

sequence<int> Sequence2;
interface Sequence2 { }

}