~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/SetTypeRefSeq.asn1

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2010-03-09 17:34:57 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100309173457-4yd6hlcb2osfhx31
Tags: 1:13.b.4-dfsg-3
Manpages in section 1 are needed even if only arch-dependent packages are
built. So, re-enabled them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SetTypeRefSeq DEFINITIONS IMPLICIT TAGS ::= 
 
2
 
 
3
BEGIN
 
4
 
 
5
 
 
6
 
 
7
SetTRseq ::=  SET 
 
8
{
 
9
  setSeq SetSeq,
 
10
  setSeqI [134] SetSeq,
 
11
  setSeqE [135] EXPLICIT SetSeq,
 
12
 
 
13
  setSeq-I SetSeqImp,
 
14
  setSeqI-I [234] SetSeqImp,
 
15
  setSeqE-I [235] EXPLICIT SetSeqImp,
 
16
 
 
17
  setSeq-E SetSeqExp,
 
18
  setSeqI-E [334] SetSeqExp,
 
19
  setSeqE-E [335] EXPLICIT SetSeqExp
 
20
 
 
21
}
 
22
 
 
23
SetSeq ::= SEQUENCE {
 
24
                seqInt INTEGER,
 
25
                seqOs OCTET STRING
 
26
                }
 
27
 
 
28
SetSeqImp ::= [64] SEQUENCE {
 
29
                seqInt INTEGER,
 
30
                seqOs OCTET STRING
 
31
                }
 
32
 
 
33
SetSeqExp ::= [65] EXPLICIT SEQUENCE {
 
34
                seqInt INTEGER,
 
35
                seqOs OCTET STRING
 
36
                }
 
37
 
 
38
END