Titan Core Initial Contribution
[deliverable/titan.core.git] / function_test / Semantic_Analyser / xer / untagged_noncharenc_SE.ttcn
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 module untagged_noncharenc_SE {
9
10 type record R2 {
11 hexstring os
12 } with {
13 variant (os) "untagged";
14 }
15
16 type record R3 {
17 octetstring os
18 } with {
19 variant (os) "untagged";
20 }
21
22 type record R4 {
23 objid oid // objid doesn't have EXER
24 } with {
25 variant (oid) "untagged"
26 }
27
28 type boolean address;
29
30 type record R5 {
31 address a, // doesn't have EXER
32 default d, // ditto
33 integer last
34 } with {
35 variant (a) "untagged";
36 variant (d) "untagged";
37 }
38
39 }
40 with {
41 encode "XML";
42 }
This page took 0.03667 seconds and 5 git commands to generate.