瀏覽代碼

* test shall fail

peter 22 年之前
父節點
當前提交
c2b929017a
共有 1 個文件被更改,包括 0 次插入24 次删除
  1. 0 24
      tests/webtbs/tw2557.pp

+ 0 - 24
tests/webtbs/tw2557.pp

@@ -1,24 +0,0 @@
-{ Source provided for Free Pascal Bug Report 2557 }
-{ Submitted by "Sergey Kosarevsky" on  2003-07-01 }
-{ e-mail: [email protected] }
-Unit tw2557;
-
-{$mode objfpc}
-
-Interface
-
-Type tVMThread=Class;
-
-Type tInstructionProcessor=Procedure(Thread:tVMThread) Of Object;
-
-Const MAX_OPCODES=1;
-
-Type tVMThread=Class       Private
-        Class Procedure Opcode_HLT(Thread:tVMThread);
-     End;
-
-Const MappingTable:Array[1..MAX_OPCODES] Of tInstructionProcessor=
-       (@tVMThread.Opcode_HLT);
-
-Begin
-End.