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

module Test
{

sequence<int> Sequence1;
interface Sequence1;

sequence<int> Sequence2;
interface Sequence2 { }

}