mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
95 B
D
9 lines
95 B
D
template Tuple(T...)
|
|
{
|
|
alias T Tuple;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Tuple!(int, int) tup1 = void;
|
|
}
|