fpc/tests/webtbf/tw0893.pp
2003-10-23 16:29:25 +00:00

21 lines
228 B
ObjectPascal

{ %fail }
{ %CPU=i386 }
{$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.