mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:07:56 +02:00
15 lines
137 B
ObjectPascal
15 lines
137 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0253;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TTest = class(TObject, IInterface)
|
|
procedure Blubb.Bar = Foo;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|