source:
trunk/t3q-examples/checkTypesAndValuesModuleContainmentCheck/checkTypesAndValuesModuleContainmentCheckGood.ttcn3
@
30
| Last change on this file since 30 was 4, checked in by phdmakk, 16 years ago | |
|---|---|
| File size: 450 bytes | |
| Line | |
|---|---|
| 1 | module checkTypesAndValuesModuleContainmentCheckGood { |
| 2 | import from LibCommon_time all; |
| 3 | |
| 4 | // good module, only types and constants |
| 5 | type record MyRecordType { |
| 6 | integer field1 optional, |
| 7 | charstring field2, |
| 8 | boolean field3 |
| 9 | } |
| 10 | |
| 11 | type integer myInt; |
| 12 | |
| 13 | const myInt myIntValue:= 2; |
| 14 | |
| 15 | group GroupedDefs{ |
| 16 | type integer myGroupedInt; |
| 17 | const myGroupedInt myGroupedIntValue:= 2; |
| 18 | |
| 19 | } |
| 20 | } |
Note: See TracBrowser
for help on using the repository browser.
