pierre %!s(int64=25) %!d(string=hai) anos
pai
achega
695f24d2bd
Modificáronse 1 ficheiros con 16 adicións e 0 borrados
  1. 16 0
      tests/webtbs/tbug932.pp

+ 16 - 0
tests/webtbs/tbug932.pp

@@ -0,0 +1,16 @@
+program test;
+
+{$ASMMODE Intel }
+
+procedure TestProc;
+const
+  TestConst: String = 'Test';
+begin
+  asm
+    mov edi, offset TestConst
+  end;
+end;
+
+begin
+  TestProc;
+end.