d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test19954.d
blob6ccc8beca890a03cd73044a1c180743f050069f3
1 // https://issues.dlang.org/show_bug.cgi?id=19954
3 template AliasSeq(TList...)
5 alias AliasSeq = TList;
8 void fun(string[]){}
10 void main()
12 fun(cast(string[])AliasSeq!"");
13 auto a = cast(char[][])"";