I want something like this:
```d
void foo(MODULES... = __MODULE__)() {}// these should work: foo!(module1, module2); foo!(module1);foo(); // this should use current module (__MODULE__) according to default value
```
Andrey Zherikov via Digitalmars-d-learn Wed, 26 Jan 2022 18:51:09 -0800
I want something like this:
```d
void foo(MODULES... = __MODULE__)() {}// these should work: foo!(module1, module2); foo!(module1);foo(); // this should use current module (__MODULE__) according to default value
```