pascalabcnet/TestSuite/errors/err0237.pas

11 lines
113 B
ObjectPascal
Raw Permalink Normal View History

2018-05-06 15:50:42 +03:00
type
t1=abstract class
procedure test; abstract;
end;
t2=sealed class(t1)
end;
begin
end.