Merge dmd upstream e2fe2687b
[official-gcc.git] / gcc / testsuite / gdc.test / runnable / link15021.d
blob62918a26e3e21187ca46ed6c869e80b558ae104f
1 // PERMUTE_ARGS: -inline -g -debug -unittest
3 import imports.std15021conv;
5 class AliasDecl {}
7 void aliasDecl(AliasDecl ad)
9 AliasDecl* zis;
11 static if (is(typeof(to!string(*zis))))
13 pragma(msg, "hit!");
14 to!string(*zis);
18 void main() {}