d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail44.d
blob826bdba6af104a34e4f461600f24070a09f8e337
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail44.d(18): Error: expression `bar[i]` is `void` and has no value
5 ---
6 */
8 void Foo()
10 void[] bar;
11 void[] foo;
13 bar.length = 50;
14 foo.length = 50;
16 for(size_t i=0; i<50; i++)
18 foo[i] = bar[i];