conformance_test/positive_tests added
[deliverable/titan.core.git] / conformance_test / positive_tests / 06_types_and_values / 0602_structured_types_and_values / 0602_toplevel / Syn_0602_TopLevel_002.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2016 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 * Contributors:
9 * Adrien Kirjak – initial implementation
10 *
11 ** @version 0.0.1
12 ** @purpose 1:6.2, Valid recursive record type definition
13 ** @verdict pass accept, noexecution
14 ***************************************************/
15 module Syn_0602_TopLevel_002 {
16 // In case of record and set types, to avoid infinite recursion, fields referencing to its own type, shall be optional.
17 type record MyRecord {
18 integer field1,
19 MyRecord field2 optional,
20 float field3
21 }
22
23 type component GeneralComp {
24 }
25
26
27 testcase TC_Syn_0602_TopLevel_002() runs on GeneralComp {
28 setverdict(pass);
29 }
30
31 control {
32 execute(TC_Syn_0602_TopLevel_002());
33 }
34 }
This page took 0.03148 seconds and 5 git commands to generate.