program tismngd1; {$mode objfpc} {$modeswitch advancedrecords} uses TypInfo; var gError: LongInt = 0; function NextErrorCode: LongInt; inline; begin Inc(gError); Result := gError; end; generic procedure TestType(aIsMngd: Boolean); inline; begin if IsManagedType(T) <> aIsMngd then begin Writeln('IsManagedType(', PTypeInfo(TypeInfo(T))^.Name, ') failure; expected: ', aIsMngd, ', got: ', IsManagedType(T)); Halt(NextErrorCode); end; NextErrorCode; end; type TTestLongInt = record a: LongInt; end; TTestAnsiString = record a: AnsiString; end; TTestManaged = record a: LongInt; class operator Initialize(var aTestManaged: TTestManaged); end; TTestObj = object a: LongInt; end; TTestObjAnsiString = object a: AnsiString; end; class operator TTestManaged.Initialize(var aTestManaged: TTestManaged); begin aTestManaged.a := 42; end; type TProcVar = procedure; TMethodVar = procedure of object; TDynArrayLongInt = array of LongInt; TStaticArrayLongInt = array[0..4] of LongInt; TStaticArrayAnsiString = array[0..4] of AnsiString; TEnum = (eOne, eTwo, eThree); TSet = set of (sOne, sTwo, sThree); begin specialize TestType(False); specialize TestType(False); specialize TestType(False); specialize TestType(True); specialize TestType(True); specialize TestType(True); specialize TestType(False); specialize TestType(False); specialize TestType(False); specialize TestType(False); specialize TestType(True); specialize TestType(False); specialize TestType(False); specialize TestType(True); specialize TestType(True); specialize TestType(False); specialize TestType(True); specialize TestType(True); specialize TestType(False); specialize TestType(True); specialize TestType(False); specialize TestType(False); Writeln('Ok'); end.