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

module Test
{

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

}