mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
19 lines
215 B
ObjectPascal
19 lines
215 B
ObjectPascal
unit uw18087a;
|
|
|
|
interface
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TFoo1 = class
|
|
protected // it worked if "protected" was removed
|
|
procedure Proc1; virtual;
|
|
end;
|
|
|
|
implementation
|
|
|
|
procedure TFoo1.Proc1;
|
|
begin
|
|
end;
|
|
|
|
end. |