dmd/compiler/test/compilable/test23874.d

10 lines
179 B
D

// https://issues.dlang.org/show_bug.cgi?id=23874
// REQUIRED_ARGS: -profile=gc
string myToString()
{
return "";
}
enum x = myToString ~ "";
immutable x2 = myToString ~ "";