aboutsummaryrefslogtreecommitdiffstats
path: root/tests/16-constraint-OK.asn1.-EF
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-03-20 12:58:00 +0000
committerLev Walkin <vlm@lionet.info>2005-03-20 12:58:00 +0000
commitff7dd147728b6acb90193b5713f4329f752d654f (patch)
tree9002753185e0ae31267972b12d26f3e834977f22 /tests/16-constraint-OK.asn1.-EF
parent7ec9b4c722ba013b44dfd8f51c47207b30aa9451 (diff)
ContainedSubtype support
Diffstat (limited to 'tests/16-constraint-OK.asn1.-EF')
-rw-r--r--tests/16-constraint-OK.asn1.-EF8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/16-constraint-OK.asn1.-EF b/tests/16-constraint-OK.asn1.-EF
index 9fae28c7..305fc3e6 100644
--- a/tests/16-constraint-OK.asn1.-EF
+++ b/tests/16-constraint-OK.asn1.-EF
@@ -3,7 +3,9 @@ ModuleTestConstraint { iso org(3) dod(6) internet(1) private(4) enterprise(1)
DEFINITIONS ::=
BEGIN
-Type1 ::= IA5String (SIZE(1..10,...))(FROM("a".."z" | "#"))
+Type0 ::= IA5String (((SIZE(1..10))(FROM("a".."z" | "#"))))
+
+Type1 ::= IA5String (SIZE(1..10,...))(FROM("a".."z" | "#",...))
Type2 ::= IA5String (SIZE(MIN..4) | FROM("abc"))
@@ -13,6 +15,10 @@ Type4 ::= INTEGER (1..MAX)
Type5 ::= BOOLEAN (TRUE | FALSE)
+Type6 ::= IA5String ((SIZE(1..10))(FROM("a".."z" | "#")))
+
+ten INTEGER ::= 10
+
v1 Type1 ::= "#value with ""double quotes"""
END