fpc/tests/webtbs/tw10371.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

47 lines
636 B
ObjectPascal

program bug;
{$MODE OBJFPC} {$H+}
{$INLINE ON}
uses
SysUtils, Classes;
type
TBug = class
protected
fL: longword;
function InlinedMethod : longword; inline;
public
procedure Method1(var Buf);
procedure Method2;
end;
function TBug.InlinedMethod : longword; inline;
begin
Method1(Result);
end;
procedure TBug.Method2;
var aValue: longword;
begin
aValue := InlinedMethod;
fL:=aValue;
end;
procedure TBug.Method1(var Buf);
type
plongword=^longword;
begin
plongword(@buf)^:=$12345678;
end;
var
b: tbug;
begin
b:=tbug.create;
b.method2;
if (b.fl<>$12345678) then
halt(1);
b.free;
end.