fpc/tests/webtbs/tw3893.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

22 lines
441 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3893 }
{ Submitted by "George Bakhtadze" on 2005-04-14 }
{ e-mail: mirage@avagames.net }
program test;
function GetPropertyValue: Pointer;
begin
end;
var
Size, Size2: Single;
d: Integer;
p: Pointer;
begin
Size := 9.11;
// d := Integer(GetPropertyValue()); // All commented code works
// p := GetPropertyValue();
// Size2 := single(p);
Size2 := single(GetPropertyValue());
end.