diff options
Diffstat (limited to 'csharp/test/Ice/proxy/Test.ice')
-rw-r--r-- | csharp/test/Ice/proxy/Test.ice | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/proxy/Test.ice b/csharp/test/Ice/proxy/Test.ice index 687da354569..2b236bfb478 100644 --- a/csharp/test/Ice/proxy/Test.ice +++ b/csharp/test/Ice/proxy/Test.ice @@ -15,14 +15,14 @@ module Test { -class MyClass +interface MyClass { void shutdown(); Ice::Context getContext(); }; -class MyDerivedClass extends MyClass +interface MyDerivedClass extends MyClass { Object* echo(Object* obj); }; |