fpc/tests/webtbs/tbug893.pp
2000-03-26 11:06:49 +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.