Browse Source

*** empty log message ***

florian 26 years ago
parent
commit
94a2710341
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/webtbs/tbug761.pp

+ 14 - 0
tests/webtbs/tbug761.pp

@@ -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.
+
+