From cb0660deaaabba6f206ca28feb15c6b1e02d4c70 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 22 Mar 1999 22:07:21 +0000 Subject: [PATCH] *** empty log message *** --- bugs/bug0232.pp | 8 ++++++++ bugs/readme.txt | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 bugs/bug0232.pp diff --git a/bugs/bug0232.pp b/bugs/bug0232.pp new file mode 100644 index 0000000000..e85d06cc2c --- /dev/null +++ b/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. + diff --git a/bugs/readme.txt b/bugs/readme.txt index ed382b49e0..7c182a8016 100644 --- a/bugs/readme.txt +++ b/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