d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test22145.d
blob55e7c639dd4783f3ba7e6007d9cd1c156df0ee6c
1 /* TEST_OUTPUT:
2 REQUIRED_ARGS: -preview=dip1000
3 ---
4 fail_compilation/test22145.d(115): Error: scope variable `x` assigned to global variable `global`
5 ---
6 */
8 // issues.dlang.org/show_bug.cgi?id=22145
10 #line 100
12 struct S
14 int opApply (scope int delegate (scope int* ptr) @safe dg) @safe
16 return 0;
20 void test() @safe
22 static int* global;
23 S s;
24 foreach (scope int* x; s)
26 global = x;