mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
154 B
D
12 lines
154 B
D
/* REQUIRED_ARGS: -betterC
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23606
|
|
|
|
string foo()()
|
|
{
|
|
string a, b;
|
|
return a ~ b;
|
|
}
|
|
|
|
enum s = foo();
|