mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:08:13 +02:00
11 lines
162 B
ObjectPascal
11 lines
162 B
ObjectPascal
{ %fail }
|
|
program project1;
|
|
{$mode objfpc}
|
|
type
|
|
TMyClass = class(TObject)
|
|
type
|
|
procedure A; virtual; abstract; // should not be allowed
|
|
end;
|
|
begin
|
|
end.
|