mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 10:29:17 +02:00
* new bug
This commit is contained in:
parent
14bd8b899a
commit
3127f0a11d
22
tests/webtbs/tw2557.pp
Normal file
22
tests/webtbs/tw2557.pp
Normal file
@ -0,0 +1,22 @@
|
||||
{ Source provided for Free Pascal Bug Report 2557 }
|
||||
{ Submitted by "Sergey Kosarevsky" on 2003-07-01 }
|
||||
{ e-mail: netsurfer@au.ru }
|
||||
Unit tw2557;
|
||||
|
||||
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.
|
Loading…
Reference in New Issue
Block a user