* more webbugs added

This commit is contained in:
peter 2000-12-12 19:54:19 +00:00
parent 1013c7e592
commit 8493fd9be9
5 changed files with 36 additions and 0 deletions

12
tests/webtbf/tw1270.pp Normal file
View File

@ -0,0 +1,12 @@
type l = record
i:longint;
end;
var l2 : l;
y : Longint;
x : Boolean;
begin
x:=l2>y;
end.

5
tests/webtbs/tw1181.pp Normal file
View File

@ -0,0 +1,5 @@
{$define ok}
{$ifdef ok}{$i uw1181.inc}{$endif}
begin
p;
end.

9
tests/webtbs/tw1284.pp Normal file
View File

@ -0,0 +1,9 @@
{ %OPT=-Seh -vh }
{$mode objfpc}
function f(p: word): boolean;
begin
result := (p mod 10 = 0);
end;
begin
f(0)
end.

7
tests/webtbs/tw1286.pp Normal file
View File

@ -0,0 +1,7 @@
{$ifdef fpc}{$mode objfpc}{$endif}
uses sysutils;
var S:String;
par:array [0..1] of TVarRec; { array of const here is illegal ! }
begin
writeln(format(S, par));
end.

3
tests/webtbs/uw1181.inc Normal file
View File

@ -0,0 +1,3 @@
procedure p;
begin
end;