浏览代码

no message

florian 20 年之前
父节点
当前提交
5e038a1b53
共有 1 个文件被更改,包括 24 次插入0 次删除
  1. 24 0
      tests/webtbs/tw3898.pp

+ 24 - 0
tests/webtbs/tw3898.pp

@@ -0,0 +1,24 @@
+{ Source provided for Free Pascal Bug Report 3898 }
+{ Submitted by "alphax" on  2005-04-19 }
+{ e-mail: [email protected] }
+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.