*** empty log message ***

This commit is contained in:
florian 1999-03-22 22:07:21 +00:00
parent 9170b30465
commit cb0660deaa
2 changed files with 10 additions and 0 deletions

8
bugs/bug0232.pp Normal file
View File

@ -0,0 +1,8 @@
const
p : procedure a;stdcall=nil; { <----- this doesn't what you expect !!!!}
p : procedure a stdcall=nil; { so delphi supports also this way of }
{ declaration }
begin
end.

View File

@ -314,3 +314,5 @@ bug0229.pp consts > 255 are truncated (should work in -S2,-Sd)
bug0230.pp several strange happen on the ln function: ln(0): no
FPE and writeln can't write non numeric values
bug0231.pp Problem with comments
bug0232.pp const. procedure variables need a special syntax
if they use calling specification modifiers