On 1/8/13, Era Scarecrow <[email protected]> wrote: > template multiAccess(Type, string name, string attributes, > choice, bool read, bool write, T ...) {
> I'm calling it with:
> int choice;
> writeln(multiAccess!(int, "test", "@safe nothrow pure", choice,
> true, true,
'choice' is not a type, use:
template multiAccess(Type, string name, string attributes,
alias choice, bool read, bool write, T ...) {
