瀏覽代碼

* updated to show better the problem

florian 27 年之前
父節點
當前提交
71224455b8
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      bugs/bug0127.pp

+ 3 - 3
bugs/bug0127.pp

@@ -2,16 +2,16 @@ unit test;
 
   interface
 
-    procedure x;
+    procedure x(l : longint);
 
   implementation
 
     procedure crash;
 
       begin
-         x; { called with pascal calling conventions }
+         x(1234); { called with pascal calling conventions }
       end;
 
-   procedure x;external;cdecl;
+   procedure x(l : longint);external;cdecl;
 
 end.