* const to var not detected

This commit is contained in:
peter 2001-06-03 20:29:33 +00:00
parent add30a428e
commit d388f3ea46

13
tests/tbf/tb0106.pp Normal file
View File

@ -0,0 +1,13 @@
{ %fail }
procedure ld_var(var a);
begin
end;
procedure ld_const(const b);
begin
ld_var(b);
end;
begin
end.