mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
27 lines
397 B
ObjectPascal
27 lines
397 B
ObjectPascal
{$mode objfpc}
|
|
uses
|
|
sysutils;
|
|
var
|
|
d : tdatetime;
|
|
begin
|
|
ShortDateFormat := 'd/m/y';
|
|
try
|
|
d:=strtodate('03'+dateseparator+'03'+dateseparator+'2033');
|
|
except
|
|
halt(1);
|
|
end;
|
|
writeln(1);
|
|
try
|
|
d:=strtodate('2.2/2');
|
|
halt(1);
|
|
except
|
|
end;
|
|
writeln(2);
|
|
try
|
|
d:=strtodate('33'+dateseparator+'33'+dateseparator+'33');
|
|
halt(1);
|
|
except
|
|
end;
|
|
writeln('ok');
|
|
end.
|