source:
trunk/t3q-examples/checkTemplatesModuleContainmentCheck/checkTemplatesModuleContainmentGood.ttcn3
@
32
Last change on this file since 32 was 4, checked in by phdmakk, 14 years ago | |
---|---|
File size: 369 bytes |
Rev | Line | |
---|---|---|
[4] | 1 | module checkTemplatesModuleContainmentGood { |
2 | import from LibCommon_time all; | |
3 | ||
4 | // good module, only templates | |
5 | template MyRecordType t_1 := { | |
6 | field1 := 1, | |
7 | field2 := "a", | |
8 | field3 :=true | |
9 | } | |
10 | ||
11 | template integer t_2 := (0,1,2,3,4,5,6,7); | |
12 | ||
13 | ||
14 | group GroupedDefs{ | |
15 | template integer t_3 :=(0 .. 10); | |
16 | ||
17 | } | |
18 | } |
Note: See TracBrowser
for help on using the repository browser.