mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-02-24 18:38:39 +01: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.
|