mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:47:58 +02:00
15 lines
233 B
ObjectPascal
15 lines
233 B
ObjectPascal
{ %FAIL }
|
|
{ %OPT=-Sew }
|
|
|
|
{ Note: we are speculating for "Unreachable code" warnings here }
|
|
|
|
program tb0700;
|
|
|
|
var
|
|
arr: array of LongInt;
|
|
begin
|
|
arr := Nil;
|
|
if TypeInfo(arr[0]) <> TypeInfo(LongInt) then
|
|
Writeln('False');
|
|
end.
|