summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/DictionaryRedefinition.ice
blob: 2c060578e5f0a2b663a6aa28baf304ae8efbf094 (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
{

// dictionary<int, long> Dictionary;
// dictionary<int, long> Dictionary;
dictionary<int, long> foo;
dictionary<int, long> foo;

}