* new bugs

This commit is contained in:
peter 2001-02-05 20:45:59 +00:00
parent 2531d36bff
commit b5644bee5c
2 changed files with 29 additions and 0 deletions

16
tests/webtbs/tw1364.pp Normal file
View File

@ -0,0 +1,16 @@
{$X-}
type
o=object
constructor init(s:string);
end;
constructor o.init(s:string);
begin
end;
var
s:o;
begin
s.init('test');
end.

13
tests/webtbs/tw1376.pp Normal file
View File

@ -0,0 +1,13 @@
unit tw1376;
interface
procedure mumble (x:integer); pascal;
implementation
procedure mumble (x:integer); pascal;
begin
end;
end.