This commit is contained in:
peter 2000-02-06 13:00:44 +00:00
parent 00cd43e466
commit 9fb6725b8b
2 changed files with 11 additions and 0 deletions

10
bugs/bug0310.pp Normal file
View File

@ -0,0 +1,10 @@
procedure p(s:string);
var
s : string;
begin
writeln(s);
end;
begin
p('test');
end.

View File

@ -399,3 +399,4 @@ bug0293.pp no error with variable name = type name
bug0299.pp passing Array[0..1] of char by value to proc leads to problems
bug0305.pp Finally is not handled correctly after inputting 0
bug0308a.pp problem with objects that don't have VMT nor variable fields
bug0310.pp local and para dup are not detected