mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-18 19:31:35 +02:00
18 lines
203 B
ObjectPascal
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.
|