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

16 lines
296 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag20059.d(15): Error: expected return type of `string`, not `string[]`:
fail_compilation/diag20059.d(13): Return type of `string` inferred here.
---
*/
auto fail()
{
string ret;
if (true)
return ret;
else
return [ret];
}