blob: a7a5914cfcef99a66029d46fcaa2ed6603abb5c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
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];
}
|