blob: 76a04d8d6d3f210385dd2afef7fe876025252c9a [file] [log] [blame]
module issue21905;
struct Conv
{
StaticIterable b;
alias b this;
}
struct StaticIterable
{
static Conv b;
alias b this;
}
void each(ref StaticIterable r)
{
return ;
}
void main()
{
StaticIterable s;
each(s);
}