소스 검색

*** empty log message ***

florian 25 년 전
부모
커밋
a3fe5e74cf
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      tests/webtbs/tbug893.pp

+ 17 - 0
tests/webtbs/tbug893.pp

@@ -0,0 +1,17 @@
+{$asmmode intel}
+type
+    BugObject = object
+       Fld: word;
+       procedure WontCompile;
+    end;
+
+procedure BugObject.WontCompile;
+begin
+  asm
+    xor ax, ax
+    mov fld, ax
+  end;
+end;
+
+begin
+end.