From 3076b0cffe16087b4242547d4ce53aa73d82394f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Fri, 20 Aug 2004 08:21:10 +0000 Subject: [PATCH] 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. --- idlc/test/parser/struct.tests | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/idlc/test/parser/struct.tests b/idlc/test/parser/struct.tests index ae956f74a27e..a0a0ee800bd8 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 m; }; EXPECT FAILURE "struct.tests 5": struct S { S m; }; + + +EXPECT SUCCESS "struct.tests 6": +struct S { sequence m; }; + + +EXPECT SUCCESS "struct.tests 7": +struct S { sequence > m; };