Browse Source

*** empty log message ***

florian 26 years ago
parent
commit
cb0660deaa
2 changed files with 10 additions and 0 deletions
  1. 8 0
      bugs/bug0232.pp
  2. 2 0
      bugs/readme.txt

+ 8 - 0
bugs/bug0232.pp

@@ -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.
+

+ 2 - 0
bugs/readme.txt

@@ -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