diff options
Diffstat (limited to 'cpp/test/Ice/gc/Test.ice')
-rw-r--r-- | cpp/test/Ice/gc/Test.ice | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/cpp/test/Ice/gc/Test.ice b/cpp/test/Ice/gc/Test.ice index e2451aa5ceb..bc367837722 100644 --- a/cpp/test/Ice/gc/Test.ice +++ b/cpp/test/Ice/gc/Test.ice @@ -64,31 +64,31 @@ class Node // Sequence of structs defined above. -sequence<C2Dict> C2DictSeq; // Sequence of dictionary. +sequence<C2Dict> C2DictSeq; // Sequence of dictionary. -sequence<CSeq> CSeqSeq; // Sequence of sequence. +sequence<CSeq> CSeqSeq; // Sequence of sequence. // Struct containing classes defined above. -struct A // Struct containing sequence. +struct A // Struct containing sequence. { SSeq theSSeq; }; // Struct containing dictionary defined above. -struct B // Struct containing struct. +struct B // Struct containing struct. { S theS; }; // Dictionary of classes defined above. -dictionary<int, CSeq> CSeqDict; // Dictionary containing sequence. +dictionary<int, CSeq> CSeqDict; // Dictionary containing sequence. -dictionary<int, S> SDict; // Dictionary containing struct. +dictionary<int, S> SDict; // Dictionary containing struct. -dictionary<int, CDict> CDictDict; // Dictionary containing dictionary. +dictionary<int, CDict> CDictDict; // Dictionary containing dictionary. class CTest { @@ -114,18 +114,18 @@ module AAA dictionary<int, B> BDict; struct BStruct { - B bMem; + B bMem; }; class C { - Object obj1; - Object obj2; + Object obj1; + Object obj2; B b1; B b2; BSeq x; - BDict y; - BStruct z; + BDict y; + BStruct z; }; }; @@ -135,18 +135,18 @@ module AAA dictionary<int, C> CDict; struct CStruct { - C cMem; + C cMem; }; class B { - Object obj1; - Object obj2; - C c1; - C c2; + Object obj1; + Object obj2; + C c1; + C c2; CSeq x; - CDict y; - CStruct z; + CDict y; + CStruct z; }; }; @@ -167,24 +167,24 @@ module DDD { interface I { - void op(); + void op(); }; class C { - void op(); + void op(); }; class C2; class U { - I myI; - I* myIstar; - C myC; - C* myCstar; - C2 myC2; - C2* myC2star; + I myI; + I* myIstar; + C myC; + C* myCstar; + C2 myC2; + C2* myC2star; }; class C2 |