mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

interface: the compiler does not/cannot check whether the class implements all required methods in that case, and it moreover leads to crashes (mantis #24184). Older versions of Delphi did allow this (and don't check whether the interface methods are implemented either), but that's simply a (similar) bug in Delphi that has been fixed in XE at least * fixed compilation of webtbs/tw2727 after this fix git-svn-id: trunk@24177 -
17 lines
151 B
ObjectPascal
17 lines
151 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
type
|
|
ti = interface;
|
|
|
|
tc = class(tinterfacedobject, ti)
|
|
end;
|
|
|
|
ti = interface
|
|
procedure test;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|