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

module Test
{

struct Struct1 { byte b; long l; }
struct Struct1 { byte b; }

}