Sync with 5.1.0
[deliverable/titan.core.git] / regression_test / lazyEval / LazyASNTypes.asn
1 --/////////////////////////////////////////////////////////////////////////////
2 -- Copyright (c) 2000-2014 Ericsson Telecom AB
3 -- All rights reserved. This program and the accompanying materials
4 -- are made available under the terms of the Eclipse Public License v1.0
5 -- which accompanies this distribution, and is available at
6 -- http://www.eclipse.org/legal/epl-v10.html
7 --/////////////////////////////////////////////////////////////////////////////
8 LazyASNTypes {1 2 3} DEFINITIONS AUTOMATIC TAGS ::=
9
10
11 BEGIN
12 IMPORTS ;
13 MyASNRecord ::= SEQUENCE
14 {
15 b BOOLEAN,
16 i INTEGER,
17 r REAL,
18 bs BIT STRING,
19 os OCTET STRING,
20 cs PrintableString
21 }
22
23 StoreLocation ::= ENUMERATED
24 {
25 baltimore (0),
26 philadelphia (1),
27 washington (2)
28 }
29
30 MyASNUnion ::= CHOICE
31 {
32 i INTEGER,
33 r REAL,
34 cs CHARACTER STRING
35 }
36
37 myASNrec MyASNRecord ::=
38 {
39 b TRUE,
40 i 1,
41 r 1.0,
42 bs '1'B,
43 os '55'H,
44 cs "a"
45 }
46 END
47
This page took 0.0319 seconds and 5 git commands to generate.