source: trunk/t3q-examples/checkTestcasesModuleImportsLibCommon_Sync/checkTestcasesModuleImportsLibCommon_syncBad.ttcn3 @ 17

Last change on this file since 17 was 4, checked in by phdmakk, 14 years ago
File size: 379 bytes
Line 
1module 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.