mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
* more webbugs added
This commit is contained in:
parent
1013c7e592
commit
8493fd9be9
12
tests/webtbf/tw1270.pp
Normal file
12
tests/webtbf/tw1270.pp
Normal 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
5
tests/webtbs/tw1181.pp
Normal file
@ -0,0 +1,5 @@
|
||||
{$define ok}
|
||||
{$ifdef ok}{$i uw1181.inc}{$endif}
|
||||
begin
|
||||
p;
|
||||
end.
|
9
tests/webtbs/tw1284.pp
Normal file
9
tests/webtbs/tw1284.pp
Normal 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
7
tests/webtbs/tw1286.pp
Normal 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
3
tests/webtbs/uw1181.inc
Normal file
@ -0,0 +1,3 @@
|
||||
procedure p;
|
||||
begin
|
||||
end;
|
Loading…
Reference in New Issue
Block a user