mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
108 B
D
12 lines
108 B
D
struct X(size_t Z)
|
|
{
|
|
void set(T)(T[Z] v...)
|
|
{
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
X!3 a;
|
|
a.set(1,2,3);
|
|
}
|