Ciao, ho un problema con la definizione di un tipo:
in pratica ho il seguente codice:
codice:
type END_RECORD_TYPE = record
     PART_NUM   : string[24];// LRU part-number and revision
     SER_NUM    : string[16];// LRU serial-number
     LRU_ID     : string[4]; // LRU type
     START_TIME : string[12];// TP start time
end;

var END_OUTFILE : file of END_RECORD_TYPE;
quando vado a compilare, mi da questo errore :
[Error] declarat_04.pas(239): E1025 Unsupported language feature: 'typed or untyped file'

com'è possibile, ho consultato la guida in linea e l'esempio che viene riportato è lo stesso...