diff options
Diffstat (limited to 'csharp/test/Ice/ami/TestI.cs')
-rw-r--r-- | csharp/test/Ice/ami/TestI.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/csharp/test/Ice/ami/TestI.cs b/csharp/test/Ice/ami/TestI.cs index 4f7ec7fbe79..61377d11ef3 100644 --- a/csharp/test/Ice/ami/TestI.cs +++ b/csharp/test/Ice/ami/TestI.cs @@ -186,6 +186,16 @@ public class TestI : TestIntfDisp_ private List<TaskCompletionSource<object>> _pending = new List<TaskCompletionSource<object>>(); } +public class TestII : Test.Outer.Inner.TestIntfDisp_ +{ + override public int + op(int i, out int j, Ice.Current current) + { + j = i; + return i; + } +} + public class TestControllerI : TestIntfControllerDisp_ { override public void |