source:
branches/t3e-tools/t3q-examples/checkModuleParamsModuleContainmentCheck/checkModuleParamsModuleContainmentBad.ttcn3
@
37
Last change on this file since 37 was 4, checked in by phdmakk, 14 years ago | |
---|---|
File size: 356 bytes |
Line | |
---|---|
1 | module checkModuleParamsModuleContainmentBad { |
2 | import from LibCommon_time all; |
3 | |
4 | // good part, only module parameters |
5 | modulepar integer mp_1; |
6 | |
7 | modulepar { |
8 | integer mp_2; |
9 | charstring mp_3; |
10 | } |
11 | |
12 | //bad part |
13 | const integer c_1 := 1; |
14 | |
15 | group GroupedDefs{ |
16 | modulepar integer mp_4; |
17 | const integer c_2 := 2; |
18 | } |
19 | } |
Note: See TracBrowser
for help on using the repository browser.