mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
217 B
D
14 lines
217 B
D
// https://issues.dlang.org/show_bug.cgi?id=19954
|
|
|
|
template AliasSeq(TList...)
|
|
{
|
|
alias AliasSeq = TList;
|
|
}
|
|
|
|
void fun(string[]){}
|
|
|
|
void main()
|
|
{
|
|
fun(cast(string[])AliasSeq!"");
|
|
auto a = cast(char[][])"";
|
|
}
|