dmd/compiler/test/fail_compilation/fail208.d
2022-07-09 18:53:07 +02:00

21 lines
348 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail208.d(18): Error: `return` expression expected
fail_compilation/fail208.d(21): called from here: `MakeA()`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=1593
// ICE compiler crash empty return statement in function
struct A
{
}
A MakeA()
{
return ;
}
static const A aInstance = MakeA();