void foo()() { static assert(0); } void foo(int[] ints...) { assert(ints); }
void main() { foo(1, 2, 3); foo(); }
kinke via Digitalmars-d-learn Wed, 06 Jul 2016 13:21:06 -0700
void foo()() { static assert(0); } void foo(int[] ints...) { assert(ints); }
void main() { foo(1, 2, 3); foo(); }