diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2004-08-20 08:21:10 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2004-08-20 08:21:10 +0000 |
commit | bf4e7fc88e2c22b666f9caec441db2f60d201621 (patch) | |
tree | 6b75bf8fe6463254abe438b33e7996a92d6e085a /idlc | |
parent | 82984d31ffed915e9d7d956af08c912880105d1f (diff) |
INTEGRATION: CWS sb21 (1.2.16); FILE MERGED
2004/08/05 13:21:38 sb 1.2.16.1: #i31370# Better detect recursive uses of polymorphic struct types.
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/test/parser/struct.tests | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/idlc/test/parser/struct.tests b/idlc/test/parser/struct.tests index ae956f74a..a0a0ee800 100644 --- a/idlc/test/parser/struct.tests +++ b/idlc/test/parser/struct.tests @@ -2,9 +2,9 @@ # # $RCSfile: struct.tests,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: obo $ $Date: 2004-06-03 15:13:13 $ +# last change: $Author: rt $ $Date: 2004-08-20 09:21:10 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -79,3 +79,11 @@ struct S { sequence<E> m; }; EXPECT FAILURE "struct.tests 5": struct S { S m; }; + + +EXPECT SUCCESS "struct.tests 6": +struct S { sequence<S> m; }; + + +EXPECT SUCCESS "struct.tests 7": +struct S { sequence<sequence<S> > m; }; |