mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 04:49:26 +02:00
*** empty log message ***
This commit is contained in:
parent
f1936b0ddf
commit
94a2710341
14
tests/webtbs/tbug761.pp
Normal file
14
tests/webtbs/tbug761.pp
Normal file
@ -0,0 +1,14 @@
|
||||
{$asmmode intel}
|
||||
Type TFather = Object A : Integer; end;
|
||||
TSon = Object (TFather) B : Integer; end;
|
||||
|
||||
Var Son : TSon;
|
||||
|
||||
begin
|
||||
Asm
|
||||
mov ax, Son.A
|
||||
mov ax, Son.B
|
||||
end;
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user