mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 19:13:52 +02:00
17 lines
232 B
ObjectPascal
17 lines
232 B
ObjectPascal
{ %FAIL }
|
|
{ %OPT=-Sew }
|
|
|
|
{ Note: we are speculating for "Unreachable code" warnings here }
|
|
|
|
program tb0699;
|
|
|
|
procedure Test(aArg: LongInt);
|
|
begin
|
|
if TypeInfo(aArg) <> TypeInfo(LongInt) then
|
|
Writeln('False');
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|