mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
262 B
D
15 lines
262 B
D
// https://issues.dlang.org/show_bug.cgi?id=18871
|
|
// and https://issues.dlang.org/show_bug.cgi?id=18819
|
|
|
|
struct Problem
|
|
{
|
|
~this() {}
|
|
}
|
|
struct S
|
|
{
|
|
Problem[1] payload;
|
|
}
|
|
enum theTemplateB = {
|
|
static foreach (e; S.init.tupleof) {}
|
|
return true;
|
|
}();
|