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