[code]
mixin template Test(alias a){
        int a;
}

void main(){
        mixin Test!blah;
}
[/code]

Compiler says it doesn't know about "blah". My purpose is to
define the parameter as a variable. Is that possible?

Reply via email to