d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag20059.d
blob2c8063a243011b95b460963689a4bf62b26ae507
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag20059.d(15): Error: expected return type of `string`, not `string[]`:
5 fail_compilation/diag20059.d(13): Return type of `string` inferred here.
6 ---
7 */
9 auto fail()
11 string ret;
12 if (true)
13 return ret;
14 else
15 return [ret];