fpc/tests/webtbf/tw3450.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

23 lines
311 B
ObjectPascal

{ %fail }
{ Source provided for Free Pascal Bug Report 3450 }
{ Submitted by "Vincent Snijders" on 2004-12-11 }
{ e-mail: vsnijders@quicknet.nl }
{$mode objfpc}{$H+}
uses
uw3450;
var
A: TA;
begin
A := TA.Create;
// no error here
with A do
I := 9;
// this fails, correctly
A.I := 9;
end.