no message

This commit is contained in:
florian 2005-04-28 19:33:45 +00:00
parent f6442b758c
commit 5e038a1b53

24
tests/webtbs/tw3898.pp Normal file
View File

@ -0,0 +1,24 @@
{ Source provided for Free Pascal Bug Report 3898 }
{ Submitted by "alphax" on 2005-04-19 }
{ e-mail: acmui_2004@163.com }
program Project1;
{$APPTYPE CONSOLE}
{$IFDEF FPC}
{$MODE ObjFpc}
{$ENDIF}
uses
SysUtils,
Variants;
var
DT: TDateTime;
V: Variant;
begin
DT := Now();
V := DT;
if VarType(V)<>varDate then
halt(1);
writeln('ok');
end.