www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 21929] New: delegates capture do not respect scoping

https://issues.dlang.org/show_bug.cgi?id=21929

          Issue ID: 21929
           Summary: delegates capture do not respect scoping
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: major
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: deadalnix gmail.com

See sample code:

https://issues.dlang.org/show_bug.cgi?id=2043

int main() {
    void delegate()[] dgs;

    for (int i = 0; i < 10; i++) {
        dgs ~= () {
            import std.stdio;
            writeln(i);
        };
    }

    dgs ~= () {
        import std.stdio;
        writeln("With cached variables");
    };

    for (int i = 0; i < 10; i++) {
        int index = i;
        dgs ~= () {
            import std.stdio;
            writeln(index);
        };
    }

    foreach (ref dg; dgs)  {
        dg();
    }

    return 0;
}

It outputs:

10
10
10
10
10
10
10
10
10
10
With cached variables
9
9
9
9
9
9
9
9
9
9

While the series of 10 is expected, as the same variable is captured every
time, the series of 9 is not. A new variable is declared with each iteration of
the loop, and therefore a new closure ought to be created.

Failure to do allows for very strange things to happen, such as observing
mutation in immutable variables.

The expected output would be:

10
10
10
10
10
10
10
10
10
10
With cached variables
0
1
2
3
4
5
6
7
8
9


https://unicorn-dev.medium.com/how-to-capture-a-variable-in-c-and-not-to-shoot-yourself-in-the-foot-d169aa161aa6
(link provided courtesy of Andrei Alexandrescu).

Possibly related issue: https://issues.dlang.org/show_bug.cgi?id=2043

I decided to open a new one because the discussion in the old one refers to a
ton of outdated language constructs and is therefore not super helpful.

--
May 18 2021