This commit is contained in:
peter 1999-06-22 13:56:00 +00:00
parent 1f99e8e497
commit 63c5b2b107
2 changed files with 23 additions and 0 deletions

21
bugs/bug0265.pp Normal file
View File

@ -0,0 +1,21 @@
PROGRAM t9;
PROCEDURE Eeep;
VAR
X: BYTE;
NewNG: STRING;
PROCEDURE SubProc;
BEGIN
newng := 'alt';
FOR X := 1 TO LENGTH(NewNG) DO BEGIN
WRITELN(X);
END;
END;
BEGIN
SubProc;
END;
BEGIN
Eeep;
END.

View File

@ -354,3 +354,5 @@ bug0261.pp problems for assignment overloading
bug0262.pp problems with virtual and overloaded methods bug0262.pp problems with virtual and overloaded methods
bug0263.pp export directive is not necessary in delphi anymore bug0263.pp export directive is not necessary in delphi anymore
bug0264.pp methodpointer bugs bug0264.pp methodpointer bugs
bug0265.pp nested proc with for-counter in other lex level