mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-09 22:43:04 +01: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.
|