mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:07:57 +02:00
21 lines
228 B
ObjectPascal
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.
|