fpc/tests/webtbf/tw8777k.pp
Jonas Maebe 497df2bb37 * also check for properties passed to read(ln) when reading integers
different from the native size, or when reading enums (because those
    are handled via a temp internally -> regular var parameter checks
    were not automatically performed)

git-svn-id: trunk@7398 -
2007-05-19 18:53:24 +00:00

35 lines
453 B
ObjectPascal

{ %fail }
program BugTest;
{$mode objfpc}
type
TTest = class
private
FTest: Byte;
procedure SetTest(const Value: Byte);
public
property Test: Byte read FTest write SetTest;
end;
procedure p(var i : byte);
begin
end;
{ TTest }
procedure TTest.SetTest(const Value: Byte);
begin
Writeln('SetTest called!');
FTest := Value;
end;
var
Test: TTest;
begin
Test := TTest.Create;
Test.Test := 2;
ReadLn(Test.Test);
end.