d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / issue21905.d
blob76a04d8d6d3f210385dd2afef7fe876025252c9a
1 module issue21905;
3 struct Conv
5 StaticIterable b;
6 alias b this;
9 struct StaticIterable
11 static Conv b;
12 alias b this;
15 void each(ref StaticIterable r)
17 return ;
20 void main()
22 StaticIterable s;
23 each(s);