aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_SUITE_data/MultipleLevels.asn
blob: 1824e1fa5a72c0e87b5d46c5fd1700c5699316f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MultipleLevels DEFINITIONS AUTOMATIC TAGS ::=

BEGIN

Top ::= SEQUENCE {
   country CountryName,
   region Name
}

CountryName ::= CountryName0

CountryName0 ::= Name

Name ::= CHOICE {
    short PrintableString (SIZE (0..10)),
    long PrintableString
}

END