Ben, Camille, can you take a look at this code
|a b|
a:='String'.
b:='t'.
a collectWithIndex:[:c :i | c < b]

Debug this code and step over until you reach the
collectWithIndex: method, the context inspector will show
a,b,c,i even though only a and b are in the current scope.
And it'll show the wrong values
a->'String'
b->'String'
c->'String'
i->'t'

(This does not happen with old compiler and it does not
happen in 307052)

Reply via email to