mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 12:00:36 +01:00
19 lines
217 B
ObjectPascal
19 lines
217 B
ObjectPascal
{ %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.
|