fpc/tests/webtbs/tw7975.pp
Jonas Maebe c6733ed9a5 * disallow placing fields after method/property definitions, because this
can create ambiguities for the parser in case the field names also exist
    as modifiers (TP- and Delphi-compatible, mantis #13971) + tests
  * fixed tests that broke because of this change

git-svn-id: trunk@13334 -
2009-06-27 12:59:46 +00:00

32 lines
430 B
ObjectPascal

{$mode objfpc}
{$inline on}
unit tw7975;
interface
type
tc = class
pref: string;
parent: tc;
function t(const s: string): string; virtual;
end;
function test(c: tc): string; inline;
implementation
function tc.t(const s: string): string;
begin
result := s + ' -- passed t';
end;
function test(c: tc): string; inline;
begin
c.pref := 'bla';
c.parent := c;
result := c.parent.t('a'+c.pref);
end;
end.