This commit is contained in:
peter 1999-04-10 16:14:46 +00:00
parent 977d575953
commit 1d46555584
2 changed files with 23 additions and 0 deletions

22
bugs/bug0237.pp Normal file
View File

@ -0,0 +1,22 @@
unit bug0237;
interface
procedure sub1(w1,w2:word);
implementation
procedure p1;
procedure sub1(w:word);
begin
end;
begin
end;
procedure sub1(w1,w2:word);
begin
end;
end.

View File

@ -320,3 +320,4 @@ bug0230.pp several strange happen on the ln function: ln(0): no
bug0232.pp const. procedure variables need a special syntax bug0232.pp const. procedure variables need a special syntax
if they use calling specification modifiers if they use calling specification modifiers
bug0234.pp New with void pointer bug0234.pp New with void pointer
bug0237.pp Can't have sub procedures with names defined in interface