mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
9 lines
90 B
D
9 lines
90 B
D
template T(B...) {
|
|
typedef B TArgs;
|
|
}
|
|
|
|
int main(){
|
|
alias T!() instantiate;
|
|
return 0;
|
|
}
|