fpc/tests/webtbs/tw0893.pp
2000-11-30 22:38:14 +00:00

18 lines
203 B
ObjectPascal

{$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.