source:
trunk/t3q-examples/checkTestcasesModuleImportsLibCommon_Sync/checkTestcasesModuleImportsLibCommon_syncBad.ttcn3
@
40
Last change on this file since 40 was 4, checked in by phdmakk, 14 years ago | |
---|---|
File size: 379 bytes |
Rev | Line | |
---|---|---|
[4] | 1 | module checkTestcasesModuleImportsLibCommon_syncBad { |
2 | import from LibWhatever { | |
3 | type all except LibCommon_sync; | |
4 | }; | |
5 | ||
6 | // good module, only types and constants | |
7 | type record MyRecordType { | |
8 | integer field1 optional, | |
9 | charstring field2, | |
10 | boolean field3 | |
11 | } | |
12 | ||
13 | type integer myInt; | |
14 | ||
15 | const myInt myIntValue:= 2; | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.