fpc/tests/webtbs/tw4078.pp
Jonas Maebe 0f8e019c44 * fixed web bug tw4078 + added test
git-svn-id: trunk@414 -
2005-06-15 16:46:03 +00:00

13 lines
219 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 4078 }
{ Submitted by "Thomas Schatzl" on 2005-06-13 }
{ e-mail: }
{$ASSERTIONS ON}
var
q : dword;
begin
q := $80000000;
q := q div 16;
assert(q = $8000000);
end.