mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:08:06 +02:00
12 lines
113 B
ObjectPascal
12 lines
113 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
type
|
|
imyinterface = interface
|
|
end;
|
|
|
|
var
|
|
s : string;
|
|
begin
|
|
s:=imyinterface;
|
|
end.
|