fpc/tests/webtbf/tw34821.pp
2019-01-06 15:21:36 +00:00

30 lines
275 B
ObjectPascal

{ %fail }
unit tw34821;
{$mode objfpc}{$H+}
interface
type TStrBuilder = class
procedure append(); inline;
end;
type TTest = object
procedure xyz;
end;
implementation
procedure TStrBuilder.append();
begin
TTest.xyz;
end;
procedure TTest.xyz;
begin
end;
end.