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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/ParamBasic.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
ParamBasic DEFINITIONS AUTOMATIC TAGS ::=
 
2
 
 
3
BEGIN
 
4
 
 
5
General1{T,T:val} ::= SEQUENCE {
 
6
  number  INTEGER,
 
7
  string  T DEFAULT val
 
8
}
 
9
 
 
10
T11 ::= General1{PrintableString,"hej"}
 
11
 
 
12
T12 ::= General1{BIT STRING,'1010'B}
 
13
 
 
14
General2{T} ::= SEQUENCE {
 
15
  number  INTEGER,
 
16
  string  T
 
17
}
 
18
 
 
19
T21 ::= General2{PrintableString}
 
20
 
 
21
T22 ::= General2{BIT STRING}
 
22
 
 
23
END