fpc/tests/webtbs/tw7200.pp
Jonas Maebe 4ae9ac969a * implicitly call procvars in tp/delphi modes for divmodn, shlshrn
and notn (mantis 7200)

git-svn-id: trunk@5724 -
2006-12-27 14:29:23 +00:00

33 lines
412 B
ObjectPascal

{$mode delphi}
var i : integer;
function GetInt : integer;
begin
Result := 10;
end;
var myfunc : function : integer;
begin
myfunc := GetInt;
//i := integer(myfunc) div 2; //works
//i := myfunc; i := i div 2; //works
i := myfunc div 2; //does not work
if (i <> 5) then
halt(1);
i := myfunc shr 2;
if i <> 2 then
halt(2);
i := not myfunc;
if i <> not(integer(10)) then
halt(3);
end.