added extensibility

This commit is contained in:
Lev Walkin 2004-09-27 20:31:02 +00:00
parent 04c2317e0e
commit cb3aabee76
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -6,8 +6,9 @@ DEFINITIONS IMPLICIT TAGS ::=
BEGIN
T ::= SEQUENCE {
i INTEGER,
any [1] EXPLICIT ANY
i INTEGER OPTIONAL,
any [1] EXPLICIT ANY,
...
}
END