d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test20596.d
blobcd059c962ea58a449a5b25d77740ddf00bec8f23
1 // PERMUTE_ARGS: -preview=dip1000
3 // https://issues.dlang.org/show_bug.cgi?id=20596
5 struct S(T)
7 void delegate() dg;
9 this(scope void delegate() dg)
11 this.dg = dg;
15 @nogc void fooTemplate()
17 int num;
19 void foo() { int dummy = num; }
21 scope s = S!int(&foo);
24 void test3032() @nogc
26 int n = 1;
27 scope fp = (){ n = 10; }; // no closure
28 fp();