diff options
Diffstat (limited to 'cpp/test/Slice/errorDetection/ClassRedefinition.ice')
-rw-r--r-- | cpp/test/Slice/errorDetection/ClassRedefinition.ice | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Slice/errorDetection/ClassRedefinition.ice b/cpp/test/Slice/errorDetection/ClassRedefinition.ice index 9570ea69f23..3de8fb3b7f5 100644 --- a/cpp/test/Slice/errorDetection/ClassRedefinition.ice +++ b/cpp/test/Slice/errorDetection/ClassRedefinition.ice @@ -1,10 +1,6 @@ // ********************************************************************** // -// Copyright (c) 2003 - 2004 -// ZeroC, Inc. -// North Palm Beach, FL, USA -// -// All Rights Reserved. +// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. @@ -12,6 +8,10 @@ // ********************************************************************** + + + + interface Foo { long op(); }; class Class1 implements Foo { byte b; }; class Class1 implements Foo { long l; }; |