diff options
author | Kenneth Lundin <[email protected]> | 2010-02-19 14:01:57 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-19 14:01:57 +0000 |
commit | 18bd1239bee04427340a44f57f993ea92c264e41 (patch) | |
tree | dbb3031dcd2e446eb457ff7ac5229949517d7557 /lib/asn1/test/asn1_SUITE_data/SetOptional.asn1 | |
parent | 729565dc3f8bcf8829508136498aef6a542840f4 (diff) | |
download | otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.gz otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.bz2 otp-18bd1239bee04427340a44f57f993ea92c264e41.zip |
OTP-8463 Support for EXTENSIBILITY IMPLIED and SET/SEQ OF NamedType is
added.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/SetOptional.asn1')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/SetOptional.asn1 | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/SetOptional.asn1 b/lib/asn1/test/asn1_SUITE_data/SetOptional.asn1 new file mode 100644 index 0000000000..5d2f2526b3 --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/SetOptional.asn1 @@ -0,0 +1,77 @@ +SetOptional DEFINITIONS IMPLICIT TAGS ::= + +BEGIN + +SetOpt1 ::= SET +{ + bool1 BOOLEAN OPTIONAL, + int1 INTEGER, + set1 SetIn OPTIONAL +} + +SetOpt1Imp ::= SEQUENCE +{ + bool1 [1] BOOLEAN OPTIONAL, + int1 INTEGER, + set1 [2] SetIn OPTIONAL +} + +SetOpt1Exp ::= SEQUENCE +{ + bool1 [1] EXPLICIT BOOLEAN OPTIONAL, + int1 INTEGER, + set1 [2] EXPLICIT SetIn OPTIONAL +} + +SetOpt2 ::= SET +{ + set2 SetIn OPTIONAL, + bool2 BOOLEAN, + int2 INTEGER +} + +SetOpt2Imp ::= SEQUENCE +{ + set2 [1] SetIn OPTIONAL, + bool2 [2] BOOLEAN, + int2 INTEGER +} + +SetOpt2Exp ::= SEQUENCE +{ + set2 [1] EXPLICIT SetIn OPTIONAL, + bool2 [2] EXPLICIT BOOLEAN, + int2 INTEGER +} + +SetOpt3 ::= SET +{ + bool3 BOOLEAN OPTIONAL, + set3 SetIn OPTIONAL, + int3 INTEGER OPTIONAL +} + +SetOpt3Imp ::= SEQUENCE +{ + bool3 [1] BOOLEAN OPTIONAL, + set3 [2] SetIn OPTIONAL, + int3 INTEGER OPTIONAL +} + +SetOpt3Exp ::= SEQUENCE +{ + bool3 [1] EXPLICIT BOOLEAN OPTIONAL, + set3 [2] EXPLICIT SetIn OPTIONAL, + int3 INTEGER OPTIONAL +} + + + +SetIn ::= SET +{ + boolIn BOOLEAN, + intIn INTEGER +} + + +END |