source:
trunk/t3q-examples/checkTypesAndValuesModuleImportsLibCommon/checkTypesAndValuesModuleImportsLibcommonBad.ttcn3
Last change on this file was 4, checked in by phdmakk, 15 years ago | |
---|---|
File size: 351 bytes |
Line | |
---|---|
1 | module checkTypesAndValuesModuleImportsLibcommonBad { |
2 | import from LibWhatever { |
3 | type all except LibCommon; |
4 | }; |
5 | |
6 | |
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 | } |
17 | |
18 | module a { |
19 | } |
Note: See TracBrowser
for help on using the repository browser.