diff options
Diffstat (limited to 'csharp/test/Ice/operations/Test.ice')
-rw-r--r-- | csharp/test/Ice/operations/Test.ice | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/csharp/test/Ice/operations/Test.ice b/csharp/test/Ice/operations/Test.ice index 0b9c2cb22cf..ec9caea18ee 100644 --- a/csharp/test/Ice/operations/Test.ice +++ b/csharp/test/Ice/operations/Test.ice @@ -353,3 +353,18 @@ const string su1 = "\u0128\u0178\u00FF\u0100\u1F00\U00010194\U0001016A\U00010198 const string su2 = "\U00000128\U00000178\U000000FF\U00000100\U00001F00\U00010194\U0001016A\U00010198\U0001F340\U0001F341\U0001F342\U0001F343"; }; + +module Test2 +{ + +/** + * + * Makes sure that proxy operations are correctly generated when extending an interface from + * a different module (ICE-7639). + * + **/ +class MyDerivedClass extends Test::MyClass +{ +}; + +}; |