fpc/tests/webtbs/tw3694.pp
2005-04-25 07:50:55 +00:00

21 lines
233 B
ObjectPascal

program bug1;
function f : tobject;
begin
f := tobject.create;
end;
var
{$ifdef CPU64}
s : double;
{$else}
s : single;
{$endif CPU64}
begin
{$ifdef CPU64}
s := double(f);
{$else CPU64}
s := single(f);
{$endif CPU64}
end.