fpc/tests/tbs/tb0488b.pp
florian 011993a5f1 * properties fixed
git-svn-id: trunk@7084 -
2007-04-09 19:04:51 +00:00

19 lines
338 B
ObjectPascal

{ Checks whether the %x format string supports qwords.
This is a variation of tb0488a
}
uses {$ifdef unix}cwstring, {$endif}SysUtils,erroru;
procedure Check(a,b:ansistring);
begin
if a<>b then
begin
writeln(a,' should be equal to ',b);
error;
end;
end;
begin
check(WideFormat('%x', [$FFFFFFF]),'FFFFFFF');
end.