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:
parent
af7d272cb5
commit
3076b0cffe
1 changed files with 10 additions and 2 deletions
|
@ -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; };
|
||||
|
|
Loading…
Reference in a new issue