Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / ASN1 / errorMessages / Test84.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--/////////////////////////////////////////////////////////////////////////////
8Test84
9
10DEFINITIONS
11
12AUTOMATIC TAGS
13
14::=
15
16BEGIN
17
18MySetType1 ::= SET {
19 field1 INTEGER,
20 field2 BOOLEAN OPTIONAL,
21 field3 NULL,
22 field4 OCTET STRING,
23 field5 BIT STRING,
24 field6 ENUMERATED {a,b,c} DEFAULT a,
25 field7 REAL OPTIONAL
26 }
27
28mySetValue1 MySetType1 ::= {
29 field7 {mantissa 10,base 2, exponent 2}, --REAL
30 field2 TRUE, -- BOOLEAN,
31 field3 NULL,
32 field4 'FF00'H, -- OCTET STRING,
33 field5 '01010'B, -- BIT STRING,
34 field6 b --ENUMERATED {a,b,c)
35 }
36END
This page took 0.043757 seconds and 5 git commands to generate.