fpc/tests/tbf/tb0203.pp
Jonas Maebe 1ee8207ffa * fixed mantis #9522: no longer allow typecasting ordinal constants
to complex types (caused a lot of internal errors later on, and
    was also Delphi-incompatible)

git-svn-id: trunk@8369 -
2007-09-03 15:55:26 +00:00

13 lines
133 B
ObjectPascal

{ %fail }
type
dummyrec = record
i : int64;
end;
var
d: double;
begin
d := double(dummyrec($ffffffff80000000));
end.