(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test23606.d
/* REQUIRED_ARGS: -betterC
 */

// https://issues.dlang.org/show_bug.cgi?id=23606

string foo()()
{
    string a, b;
    return a ~ b;
}

enum s = foo();