pascalabcnet/TestSuite/errors/err0444.pas

8 lines
151 B
ObjectPascal
Raw Permalink Normal View History

2021-11-21 14:43:55 +03:00
//!Использование exit, break и continue в блоке finally недопустимо
begin
try
finally
exit;
end;
end.