ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.dg/pr100882c.d

26 lines
276 B
D
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
// { dg-do compile }
struct CowArray
{
this(this)
{
}
}
struct Tuple
{
CowArray expand;
}
auto tuple(CowArray)
{
return Tuple();
}
auto parseCharTerm()
{
CowArray set;
return tuple(set);
}