unit uw38827; {$mode Delphi} interface type TRec = record C: TArray; function GetArr: TArray; inline; end; implementation function TRec.GetArr: TArray; begin result := nil; case GetTypeKind(T) of tkFloat: if SizeOf(T) = SizeOf(Single) then result := C; end; end; end.