summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/proxy/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/proxy/Test.ice')
-rw-r--r--csharp/test/Ice/proxy/Test.ice4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/proxy/Test.ice b/csharp/test/Ice/proxy/Test.ice
index 1d18b0511f6..beacc0084f1 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);
};