diff options
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/Mod2.asn')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/Mod2.asn | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/Mod2.asn b/lib/asn1/test/asn1_SUITE_data/Mod2.asn new file mode 100644 index 0000000000..cc22c6f13c --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/Mod2.asn @@ -0,0 +1,43 @@ +Mod2 DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +IMPORTS + Stat,Country + FROM Mod3 + L + FROM Mod1 + Time,LocName,ThingName,Name + FROM Mod4; + +T ::= SEQUENCE { + unit ENUMERATED{celsius,fahrenheit,kelvin}, + degree INTEGER, + location L, + time Time, + statistics Stat +} + +OtherName ::= SEQUENCE { + locationName LocName, + thingName ThingName +} + +FirstName ::= CHOICE { + firstname PrintableString, + nickname PrintableString +} + +FamilyName ::= SEQUENCE{ + prefix ENUMERATED{none,von,af}, + secondname PrintableString +} + +Lang ::= SEQUENCE{ + l PrintableString} + +Inhabitant ::= SEQUENCE { + name Name, + country Country} + +END |