no message

This commit is contained in:
florian 2004-05-24 20:34:22 +00:00
parent ff4c4f2e08
commit 5cd52d5a42
2 changed files with 32 additions and 0 deletions

16
tests/tbf/tb0166.pp Normal file
View File

@ -0,0 +1,16 @@
procedure p1(const v);
begin
end;
procedure p2;
var
lb : longbool;
begin
p1(pchar(@lb));
end;
begin
end.

16
tests/webtbf/tw3047.pp Normal file
View File

@ -0,0 +1,16 @@
{ Source provided for Free Pascal Bug Report 3047 }
{ Submitted by "GBD" on 2004-04-12 }
{ e-mail: }
{ $mode delphi}
function JenkinsHashBuffer(const buffer; length : Integer; initVal : Integer) : longword;
begin
end;
function JenkinsHashString(const s : String) : longword;
begin
result := JenkinsHashBuffer(PChar(s), Length(s), 0)
end;
begin
end.