summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/inheritance/IAI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/inheritance/IAI.cs')
-rw-r--r--csharp/test/Ice/inheritance/IAI.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/csharp/test/Ice/inheritance/IAI.cs b/csharp/test/Ice/inheritance/IAI.cs
new file mode 100644
index 00000000000..e2aca850c22
--- /dev/null
+++ b/csharp/test/Ice/inheritance/IAI.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 IAI : Test.MA.IADisp_
+{
+ public IAI()
+ {
+ }
+
+ public override Test.MA.IAPrx iaop(Test.MA.IAPrx p, Ice.Current current)
+ {
+ return p;
+ }
+}