mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
296 B
D
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];
|
|
}
|