diff options
Diffstat (limited to 'csharp/test/Ice/inheritance/CAI.cs')
-rw-r--r-- | csharp/test/Ice/inheritance/CAI.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/csharp/test/Ice/inheritance/CAI.cs b/csharp/test/Ice/inheritance/CAI.cs new file mode 100644 index 00000000000..657870dea6a --- /dev/null +++ b/csharp/test/Ice/inheritance/CAI.cs @@ -0,0 +1,20 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 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. +// +// ********************************************************************** + +public sealed class CAI : Test.MA.CA +{ + public CAI() + { + } + + public override Test.MA.CAPrx caop(Test.MA.CAPrx p, Ice.Current current) + { + return p; + } +} |