mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 20:39:34 +02:00
no message
This commit is contained in:
parent
f6442b758c
commit
5e038a1b53
24
tests/webtbs/tw3898.pp
Normal file
24
tests/webtbs/tw3898.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user