d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test16037.d
blob2b0ebc94839a75440f8a25183a5b2449a2413240
1 /* REQUIRED_ARGS: -preview=dip1000
2 */
4 // https://issues.dlang.org/show_bug.cgi?id=16037
6 @safe:
8 void testXXX () @nogc
10 Object o;
11 scope bool delegate (Object) alwaysFalse = (Object y) { return false; };
12 scope c1 = o !is null ? (Object y) { return o is y; } : alwaysFalse;
15 auto f() @nogc
17 int a;
18 void g(){ a=1; }
19 scope h=&g;
20 h();