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

module Test
{

sequence<int> Seq;
module Seq { }
module Mod { }
module Mod { }

}