Sync with 5.4.0
[deliverable/titan.core.git] / function_test / Semantic_Analyser / xer / emb_first_untag_SE.ttcn
CommitLineData
114d1c9a 1/******************************************************************************
3abe9331 2 * Copyright (c) 2000-2015 Ericsson Telecom AB
114d1c9a
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 ******************************************************************************/
8module emb_first_untag_SE { //^In TTCN-3 module `emb_first_untag_SE'://
9
10type record e1 { //^In type definition// \
11//^error: Neither the SEQUENCE-OF supporting EMBED-VALUES,nor its component shall have UNTAGGED\.//
12 record of universal charstring field_1
13}
14with {
15 variant "embedValues"
16 variant (field_1) "untagged"
17}
18
19type record e2 { //^In type definition// \
20//^error: Neither the SEQUENCE-OF supporting EMBED-VALUES,nor its component shall have UNTAGGED\.//
21 record of universal charstring field_1
22}
23with {
24 variant "embedValues"
25 variant (field_1[-]) "untagged"
26}
27
28
29
30
31}
32with {
33encode "XML"
34}
This page took 0.023647 seconds and 5 git commands to generate.