Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/tst/testbugfix/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 536 B image not shown  

Quelle  2018-06-29-CurrLHSGVar.tst   Sprache: unbekannt

 
# This always produced a warning"
gap> Unbind(string);
gap> for i in [ 1 .. 10 ] do
>     string := "aaaabbbb";
>     xxx := List( [], x -> string );
> od;
Syntax warning: Unbound global variable in stream:3
    xxx := List( [], x -> string );
                          ^^^^^^

# ... but this did not; now it does
gap> Unbind(string);
gap> for i in [ 1 .. 10 ] do
>     string := "aaaabbbb";
>     List( [], x -> string );
> od;
Syntax warning: Unbound global variable in stream:3
    List( [], x -> string );
                   ^^^^^^

[ Dauer der Verarbeitung: 0.4 Sekunden  (vorverarbeitet)  ]