diff options
author | Dan Gudmundsson <[email protected]> | 2014-09-18 16:40:29 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-01-12 11:40:24 +0100 |
commit | 3ab3b07afd07bb2fc59037e4b65f08c9038bf078 (patch) | |
tree | d12d03a988dd4f39d82952467b56856c78452ddf /lib/asn1/test/asn1_SUITE_data | |
parent | 2ae4e110b687b31aaa9a0e2d06b0e019819ab753 (diff) | |
download | otp-3ab3b07afd07bb2fc59037e4b65f08c9038bf078.tar.gz otp-3ab3b07afd07bb2fc59037e4b65f08c9038bf078.tar.bz2 otp-3ab3b07afd07bb2fc59037e4b65f08c9038bf078.zip |
Fix BER code generation
PKIX1Explicit-2009 did not compile.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn index e90cf55d61..a96425cbea 100644 --- a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn +++ b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn @@ -12,6 +12,15 @@ Seq ::= SEQUENCE c BOOLEAN } +SeqV1 ::= SEQUENCE + { + a INTEGER, + ..., + b BOOLEAN, + ... + } + + SeqV2 ::= SEQUENCE { a INTEGER, @@ -57,6 +66,14 @@ Set ::= SET { c BOOLEAN } + +SetV1 ::= SET { + a INTEGER, + ..., + b BOOLEAN, + ... + } + SetV2 ::= SET { a INTEGER, @@ -96,4 +113,4 @@ SetAltV2 ::= SET } -END
\ No newline at end of file +END |