pascalabcnet/TestSuite/constructor1.pas
Бондарев Иван 6191c3333f fix #786
2018-08-07 21:23:13 +02:00

10 lines
163 B
ObjectPascal

type
MyException=class(Exception)
constructor :=
create('Some text');
end;
begin
var ex := new MyException;
assert(ex.Message = 'Some text');
end.