mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:28:11 +02:00
21 lines
303 B
ObjectPascal
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.
|