mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-18 20:09:34 +01:00
+ 265
This commit is contained in:
parent
1f99e8e497
commit
63c5b2b107
21
bugs/bug0265.pp
Normal file
21
bugs/bug0265.pp
Normal 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.
|
||||||
|
|
||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user