diff options
-rw-r--r-- | csharp/test/Ice/impl/TestAMD.ice | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/impl/TestAMD.ice b/csharp/test/Ice/impl/TestAMD.ice index 0c3b091bbe3..4e9d3732d02 100644 --- a/csharp/test/Ice/impl/TestAMD.ice +++ b/csharp/test/Ice/impl/TestAMD.ice @@ -264,14 +264,14 @@ dictionary<MyEnum, MyEnumS> MyEnumMyEnumSD; struct MyStruct1 { string tesT; // Same name as the enclosing module - MyClass myClass; // Same name as an already defined class + MyClass* myClass; // Same name as an already defined class string myStruct1; // Same name as the enclosing struct } class MyClass1 { string tesT; // Same name as the enclosing module - MyClass myClass; // Same name as an already defined class + MyClass* myClass; // Same name as an already defined class string myClass1; // Same name as the enclosing class } |