diff options
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn b/lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn new file mode 100644 index 0000000000..b56b8cdc17 --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn @@ -0,0 +1,41 @@ +SeqSetIndefinite DEFINITIONS IMPLICIT TAGS ::= + +BEGIN + +SetS3 ::= SET +{ + boolS3 BOOLEAN, + setS3 SET { boolIn BOOLEAN, + intIn INTEGER }, + intS3 INTEGER + +} + +SetS3Ext ::= SET +{ + boolS3 BOOLEAN, + setS3 SET { boolIn BOOLEAN, + intIn INTEGER,... }, + intS3 INTEGER +} + + +SeqS3 ::= SEQUENCE +{ + boolS3 BOOLEAN, + seqS3 SEQUENCE { boolIn BOOLEAN, + intIn INTEGER }, + intS3 INTEGER + +} + +SeqS3Ext ::= SEQUENCE +{ + boolS3 BOOLEAN, + seqS3 SEQUENCE { boolIn BOOLEAN, + intIn INTEGER,... }, + intS3 INTEGER + +} + +END |