*** empty log message ***

This commit is contained in:
florian 2000-03-26 11:06:49 +00:00
parent 6c09cba112
commit a3fe5e74cf

17
tests/webtbs/tbug893.pp Normal file
View File

@ -0,0 +1,17 @@
{$asmmode intel}
type
BugObject = object
Fld: word;
procedure WontCompile;
end;
procedure BugObject.WontCompile;
begin
asm
xor ax, ax
mov fld, ax
end;
end;
begin
end.