mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
21 lines
267 B
ObjectPascal
21 lines
267 B
ObjectPascal
program Project1;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
var
|
|
v : Double;
|
|
begin
|
|
try
|
|
TryStrToFloat('9e9999', v);
|
|
except
|
|
on e: Exception do begin
|
|
writeln('Unexpected exception thrown: ',e.ClassName);
|
|
halt(1);
|
|
end;
|
|
end;
|
|
writeln('ok')
|
|
end.
|