blob: 692450b1ac9a641c5e948d8a6adac1f733322bf8 [file] [log] [blame]
Lev Walkin23b7c452004-09-05 10:38:36 +00001ModuleTestSetOfSimple {iso org(3) dod(6) internet(1) private(4)
Lev Walkin03ba3e92004-08-22 03:18:17 +00002 enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
3 31 }
4DEFINITIONS IMPLICIT TAGS ::=
5BEGIN
6
7Forest ::= SET OF Tree
8
9Tree ::= SEQUENCE {
10 height INTEGER,
11 width INTEGER
12}
13
14Stuff ::= SET {
15 trees [0] IMPLICIT SET OF Forest OPTIONAL,
16 anything [1] IMPLICIT SET OF SEQUENCE {
17 cup-of-coffee BIT STRING,
18 ...
19 } OPTIONAL
20}
21
22END