fpc/tests/webtbs/tw7276.pp
tom_at_work 054bc27aaa * fixed typo introduced while prettifying the test
git-svn-id: trunk@4435 -
2006-08-17 21:43:52 +00:00

18 lines
547 B
ObjectPascal

uses Sysutils;
var
s : AnsiString;
begin
s := 'Hello';
// tests whether the * in the format specifier allows all
// kind of integers; note that the * in the format specifier here
// is an incomplete format specification, i.e. it does not change
// the length of the result string
Format('%*s', [Integer(length(s)), s]);
// this is only seemingly equivalent to above, but on 64 bit
// machines the default integer type is Int64
Format('%*s', [length(s), s]);
// also test QWord
Format('%*s', [QWord(length(s)), s]);
end.