fpc/tests/tbf/tb0117.pp
Jonas Maebe e6d948470e * skip test in general for 64 bit cpus
git-svn-id: trunk@29947 -
2015-02-23 22:54:31 +00:00

21 lines
303 B
ObjectPascal

{ %fail }
{$mode delphi}
var
i: Int64;
begin
{$ifdef cpu64}
The code below only has to fail for 32 bit cpus, so
make sure the program fails to compile for another
reason on 64 bit cpus
{$else cpu64}
for i := 1 to 10 do begin
write ( '*' )
end { for i }
; writeln
{$endif cpu64}
end.