Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / ASN1 / errorMessages2 / Test10.asn
CommitLineData
970ed795 1--/////////////////////////////////////////////////////////////////////////////
3abe9331 2-- Copyright (c) 2000-2015 Ericsson Telecom AB
970ed795
EL
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--/////////////////////////////////////////////////////////////////////////////
8Test10
9
10DEFINITIONS
11
12AUTOMATIC TAGS
13
14::=
15
16BEGIN
17MySequenceType1 ::= SEQUENCE {
18 field1 INTEGER,
19 field2 BOOLEAN,
20 field3 NULL,
21 field4 OCTET STRING,
22 field5 BIT STRING,
23 field6 ENUMERATED {a,b,c},
24 field7 REAL
25 }
26
27mySequenceValue1 MySequenceType1 ::= {
28 field1 555, -- INTEGER,
29 field2 TRUE, -- BOOLEAN,
30 field3 NULL,
31 -- missing field4
32 field5 '01010'B, -- BIT STRING,
33 field6 a, --ENUMERATED {a,b,c},
34 field7 {mantissa 10,base 2, exponent 2} --REAL
35 }
36
37END
This page took 0.024613 seconds and 5 git commands to generate.