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.
This commit is contained in:
Rüdiger Timm 2004-08-20 08:21:10 +00:00
parent af7d272cb5
commit 3076b0cffe

View file

@ -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; };