Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / xsdConverter / HO18151 / HO18151.ttcn
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 ******************************************************************************/
8module HO18151 {
9
10import from geo_HO18151 all;
11
12const Lang nix := {
13 alt_ := x
14}
15
16const Lang magyar := {
17 language_ := "hu-HU"
18}
19
20control {
21 var Notewell hun := {
22 // Check the structure. Notewell should have two members (lang, base)
23 // and not three (alt_,language_,base).
24 lang := magyar,
25 base := "are belong to us"
26 }
27
28 var Notewell unk := {
29 lang := nix,
30 base := ""
31 }
32}
33
34}
This page took 0.027104 seconds and 5 git commands to generate.