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

12 lines
186 B
D

/*
TEST_OUTPUT:
---
fail_compilation/bug5.d(8): Error: function `bug5.test1` no `return exp;` or `assert(0);` at end of function
---
*/
int test1()
{
if (false)
return 0;
}