diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-07-03 08:32:35 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-07-03 08:32:35 +0000 |
commit | 37caac0a4bd84ae378847be3c6810985cde79263 (patch) | |
tree | 28f7f523b4a0307604b8795a8cfb0aa6a1be8043 /cli_ure/qa/climaker | |
parent | 6f37db7a249988227e6b3617867b4216bdebfef5 (diff) |
#i79029# test fix for i79029
Diffstat (limited to 'cli_ure/qa/climaker')
-rw-r--r-- | cli_ure/qa/climaker/types.idl | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/cli_ure/qa/climaker/types.idl b/cli_ure/qa/climaker/types.idl index 1929281feb4b..da2c3bfc2ce1 100644 --- a/cli_ure/qa/climaker/types.idl +++ b/cli_ure/qa/climaker/types.idl @@ -4,9 +4,9 @@ * * $RCSfile: types.idl,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2006-03-09 10:50:25 $ + * last change: $Author: hr $ $Date: 2007-07-03 09:32:35 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -292,6 +292,32 @@ struct Struct2 { sequence< SequenceXNamingService > at18; }; +struct Struct3 +{ + XTest iTest; +}; + +struct Struct4: Struct3 +{ + long n; +}; + +struct Struct5 +{ + Struct3 m; + Struct4 n; +}; + +struct Struct6 +{ + Struct4 m; +}; + +struct Struct7 +{ + sequence<sequence<Struct6> > seqseqStruct6; +}; + service S1: XTest { create1(); |