*** empty log message ***

This commit is contained in:
florian 1999-12-17 10:42:09 +00:00
parent f1936b0ddf
commit 94a2710341

14
tests/webtbs/tbug761.pp Normal file
View 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.