fpc/tests/tbs/tb0212.pp
2000-11-30 22:38:14 +00:00

30 lines
487 B
ObjectPascal

{ Old file: tbs0251.pp }
{ typed const are not aligned correctly OK 0.99.11 (PM) }
uses erroru;
const
c : byte = 5;
r : real = 3.4;
var
l : longint;
cc : char;
rr : real;
begin
l:=longint(@r);
if (l mod 4)<>0 then
begin
Writeln('static const are not aligned properly !');
error;
end;
cc:='d';
l:=longint(@rr);
if (l mod 4)<>0 then
begin
Writeln('static var are not aligned properly !');
error;
end;
end.