Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / xsdConverter / HO18151 / HO18151.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2015 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 HO18151 {
9
10 import from geo_HO18151 all;
11
12 const Lang nix := {
13 alt_ := x
14 }
15
16 const Lang magyar := {
17 language_ := "hu-HU"
18 }
19
20 control {
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.032231 seconds and 5 git commands to generate.