mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
18 lines
222 B
D
18 lines
222 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail41.d(17): Error: cannot return non-void from `void` function
|
|
---
|
|
*/
|
|
|
|
class MyClass
|
|
{
|
|
}
|
|
|
|
MyClass[char[]] myarray;
|
|
|
|
void fn()
|
|
{
|
|
foreach (MyClass mc; myarray)
|
|
return mc;
|
|
}
|