*** empty log message ***

This commit is contained in:
florian 2000-03-21 16:23:25 +00:00
parent 47617fd323
commit 2dbe07f533

14
tests/webtbs/tbug881.pp Normal file
View File

@ -0,0 +1,14 @@
PROGRAM TEST;
TYPE
byteSet = SET OF 0..7;
booleanArray = ARRAY[0..HIGH(word) DIV 8] OF byteSet;
booleanArrayPointer = ^booleanArray;
PROCEDURE SetBooleanArray( CONST p : booleanArrayPointer;
CONST index : word );
BEGIN
INCLUDE(p^[index DIV 8],index MOD 8)
END;
BEGIN
END.