mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
17 lines
206 B
ObjectPascal
17 lines
206 B
ObjectPascal
{ %opt=-O4 -CriotR }
|
|
|
|
{$mode objfpc}
|
|
|
|
function f : integer;
|
|
begin
|
|
result:=1234;
|
|
end;
|
|
|
|
var r, s, t, tablecols : integer;
|
|
|
|
begin
|
|
s := 1;
|
|
t := r + (s*tablecols);
|
|
t := r + (s*tablecols);
|
|
end.
|