c++: fix explicit/copy problem [PR109247]
[official-gcc.git] / gcc / testsuite / gdc.dg / pr100882c.d
blobf4e6e4d3651bb5fb3265773ec90ce2c169f571a3
1 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
2 // { dg-do compile }
4 struct CowArray
6 this(this)
11 struct Tuple
13 CowArray expand;
16 auto tuple(CowArray)
18 return Tuple();
21 auto parseCharTerm()
23 CowArray set;
24 return tuple(set);