mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 15:29:34 +02:00
*** empty log message ***
This commit is contained in:
parent
6c09cba112
commit
a3fe5e74cf
17
tests/webtbs/tbug893.pp
Normal file
17
tests/webtbs/tbug893.pp
Normal file
@ -0,0 +1,17 @@
|
||||
{$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.
|
Loading…
Reference in New Issue
Block a user