Explorar o código

*** empty log message ***

florian %!s(int64=26) %!d(string=hai) anos
pai
achega
94a2710341
Modificáronse 1 ficheiros con 14 adicións e 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.
+
+