fpc/tests/tbs/tb0536.pp
peter 07880add06 * remove svn:executable property
git-svn-id: trunk@11403 -
2008-07-18 21:28:51 +00:00

16 lines
256 B
ObjectPascal

program TestDateVariantConversion;
uses variants;
var dt : TDateTime;
v : variant;
s : String;
begin
dt := 40000;
v := dt;
s := v;
// It should return the date, depending on the localisation settings
if s = '40000' then halt(1);
end.