pascalabcnet/TestSuite/formatter_tests/input/Program1125.pas
Бондарев Иван 59c9b163c0 bug fix #785
2018-05-01 12:10:52 +02:00

10 lines
147 B
ObjectPascal

type
t1 = class
public procedure p1; virtual := exit;
end;
t2 = class(t1)
public procedure p1; override := exit;
end;
begin end.