dmd/compiler/test/compilable/test7569.d
2022-07-09 18:53:07 +02:00

9 lines
95 B
D

template Tuple(T...)
{
alias T Tuple;
}
void main()
{
Tuple!(int, int) tup1 = void;
}