aboutsummaryrefslogtreecommitdiffstats
path: root/tests/62-any-OK.asn1.-EF
diff options
context:
space:
mode:
authorvlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2004-10-28 13:22:38 +0000
committervlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2004-10-28 13:22:38 +0000
commitc1c20779c66b4543df380f25a683dc79573a50a3 (patch)
tree872800db01a22aff2a7227b383a822a70eed4d48 /tests/62-any-OK.asn1.-EF
parent7e79b8caa6fd5b71b90fa657354bcd5a6bf23a95 (diff)
added SET
git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@572 59561ff5-6e30-0410-9f3c-9617f08c8826
Diffstat (limited to 'tests/62-any-OK.asn1.-EF')
-rw-r--r--tests/62-any-OK.asn1.-EF12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/62-any-OK.asn1.-EF b/tests/62-any-OK.asn1.-EF
index 22a64bbe..4c8f5c4b 100644
--- a/tests/62-any-OK.asn1.-EF
+++ b/tests/62-any-OK.asn1.-EF
@@ -5,11 +5,12 @@ DEFINITIONS IMPLICIT TAGS ::=
BEGIN
T ::= CHOICE {
- s1 T1,
- s2 T2
+ s1 T1-ext,
+ s2 T2,
+ s3 T3
}
-T1 ::= SEQUENCE {
+T1-ext ::= SEQUENCE {
i INTEGER OPTIONAL,
any [1] EXPLICIT ANY,
...
@@ -24,4 +25,9 @@ T2 ::= [16] IMPLICIT SEQUENCE {
o6 [6] IMPLICIT BOOLEAN OPTIONAL
}
+T3 ::= SET {
+ m1 [0] IMPLICIT NumericString,
+ m2 [1] IMPLICIT BOOLEAN
+}
+
END