]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test18871.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test18871.d
CommitLineData
5b74dd0a
IB
1// https://issues.dlang.org/show_bug.cgi?id=18871
2// and https://issues.dlang.org/show_bug.cgi?id=18819
3
4struct Problem
5{
6 ~this() {}
7}
8struct S
9{
10 Problem[1] payload;
11}
12enum theTemplateB = {
13 static foreach (e; S.init.tupleof) {}
14 return true;
15}();