mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
20 lines
254 B
D
20 lines
254 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail44.d(18): Error: expression `bar[i]` is `void` and has no value
|
|
---
|
|
*/
|
|
|
|
void Foo()
|
|
{
|
|
void[] bar;
|
|
void[] foo;
|
|
|
|
bar.length = 50;
|
|
foo.length = 50;
|
|
|
|
for(size_t i=0; i<50; i++)
|
|
{
|
|
foo[i] = bar[i];
|
|
}
|
|
}
|