blob: deaa4b44a168426715833512171c8410e41cdea2 [file] [log] [blame]
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100882
// { dg-do compile }
auto iota(int, int)
{
struct Result
{
this(int)
{
}
}
return Result();
}
auto iota(int end)
{
int begin;
return iota(begin, end);
}