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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/ChoRecursive.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
ChoRecursive DEFINITIONS IMPLICIT TAGS ::= 
 
2
 
 
3
BEGIN
 
4
 
 
5
 
 
6
ChoRec ::= CHOICE 
 
7
{
 
8
   nothing [0] NULL,
 
9
   something SEQUENCE
 
10
      {
 
11
       a INTEGER,
 
12
       b OCTET STRING,
 
13
       c ChoRec
 
14
      }
 
15
}
 
16
 
 
17
ChoRec2 ::= CHOICE 
 
18
{
 
19
   something SEQUENCE
 
20
      {
 
21
       a INTEGER,
 
22
       b OCTET STRING,
 
23
       c ChoRec2
 
24
      },
 
25
   nothing [0] NULL
 
26
}
 
27
 
 
28
 
 
29
 
 
30
END