unit tb0645c; {$mode objfpc} {$modeswitch advancedrecords on} interface type TTest = record procedure Test; end; implementation { TTest } procedure TTest.Test; begin end; end.