* new tests

This commit is contained in:
peter 2001-10-22 19:58:29 +00:00
parent 5f98096685
commit 5a0f9b10f9
3 changed files with 23 additions and 0 deletions

8
tests/tbf/tb0112.pp Normal file
View File

@ -0,0 +1,8 @@
{ %FAIL }
{$J-}
const
w1 : word = 1;
begin
w1:=2;
end.

8
tests/tbf/tb0113.pp Normal file
View File

@ -0,0 +1,8 @@
{ %FAIL }
var
i : integer;
begin
{ String constants can't exceed 255 chars }
i:=length('12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890');
end.

7
tests/tbs/tb0382.pp Normal file
View File

@ -0,0 +1,7 @@
{$J+}
const
w1 : word = 1;
begin
w1:=2;
end.