Explorar el Código

*** empty log message ***

florian hace 26 años
padre
commit
94a2710341
Se han modificado 1 ficheros con 14 adiciones y 0 borrados
  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.
+
+