mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 03:28:40 +02:00
16 lines
224 B
ObjectPascal
16 lines
224 B
ObjectPascal
program tismngd2;
|
|
|
|
var
|
|
l: LongInt;
|
|
o: TObject;
|
|
_as: AnsiString;
|
|
begin
|
|
if IsManagedType(l) then
|
|
Halt(1);
|
|
if IsManagedType(o) then
|
|
Halt(2);
|
|
if not IsManagedType(_as) then
|
|
Halt(3);
|
|
Writeln('Ok');
|
|
end.
|