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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/SeqSetIndefinite.asn

  • 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
SeqSetIndefinite DEFINITIONS IMPLICIT TAGS ::= 
 
2
 
 
3
BEGIN
 
4
 
 
5
SetS3 ::= SET 
 
6
{
 
7
  boolS3  BOOLEAN,
 
8
  setS3  SET { boolIn BOOLEAN,
 
9
               intIn  INTEGER },
 
10
  intS3  INTEGER
 
11
 
 
12
}
 
13
 
 
14
SetS3Ext ::= SET 
 
15
{
 
16
  boolS3  BOOLEAN,
 
17
  setS3  SET { boolIn BOOLEAN,
 
18
               intIn  INTEGER,... },
 
19
  intS3  INTEGER
 
20
}
 
21
 
 
22
 
 
23
SeqS3 ::= SEQUENCE
 
24
{
 
25
  boolS3  BOOLEAN,
 
26
  seqS3  SEQUENCE { boolIn BOOLEAN,
 
27
               intIn  INTEGER },
 
28
  intS3  INTEGER
 
29
 
 
30
}
 
31
 
 
32
SeqS3Ext ::= SEQUENCE
 
33
{
 
34
  boolS3  BOOLEAN,
 
35
  seqS3  SEQUENCE { boolIn BOOLEAN,
 
36
               intIn  INTEGER,... },
 
37
  intS3  INTEGER
 
38
 
 
39
}
 
40
 
 
41
END