source: trunk/t3q-examples/checkTypesAndValuesModuleImportsLibCommon/checkTypesAndValuesModuleImportsLibCommonGood.ttcn3

Last change on this file was 4, checked in by phdmakk, 15 years ago
File size: 337 bytes
Line 
1module checkTypesAndValuesModuleImportsLibcommonGood {
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}
Note: See TracBrowser for help on using the repository browser.