aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-09-27 20:31:02 +0000
committerLev Walkin <vlm@lionet.info>2004-09-27 20:31:02 +0000
commitcb3aabee7626d68992f8d163e3639dcdee759a10 (patch)
treeff6cd6a6c293b9d359e4f1b71cc0a690b11f77dc /tests
parent04c2317e0e0b8305eec204c6ff4865ed2174784e (diff)
added extensibility
Diffstat (limited to 'tests')
-rw-r--r--tests/62-any-OK.asn15
-rw-r--r--tests/62-any-OK.asn1.-EF5
2 files changed, 6 insertions, 4 deletions
diff --git a/tests/62-any-OK.asn1 b/tests/62-any-OK.asn1
index 5b58562b..7c9991bd 100644
--- a/tests/62-any-OK.asn1
+++ b/tests/62-any-OK.asn1
@@ -12,8 +12,9 @@ ModuleTestANYSyntax
BEGIN
T ::= SEQUENCE {
- i INTEGER,
- any [1] ANY -- Converted into [1] EXPLICIT ANY
+ i INTEGER OPTIONAL,
+ any [1] ANY, -- Converted into [1] EXPLICIT ANY
+ ...
}
END
diff --git a/tests/62-any-OK.asn1.-EF b/tests/62-any-OK.asn1.-EF
index eb927092..bc08f038 100644
--- a/tests/62-any-OK.asn1.-EF
+++ b/tests/62-any-OK.asn1.-EF
@@ -6,8 +6,9 @@ DEFINITIONS IMPLICIT TAGS ::=
BEGIN
T ::= SEQUENCE {
- i INTEGER,
- any [1] EXPLICIT ANY
+ i INTEGER OPTIONAL,
+ any [1] EXPLICIT ANY,
+ ...
}
END