Eigenpoll : D wish list : temporary variable 

support temporary variable for templates.
temporary variable is *not* set on rom, heap, stack and anything.

template foo(string s){
temporary t = s ~ s;
temporary u = t ~ t;
string test = u;
}

void main(){
writefln(foo!("a"));
}

Report this item for cleanup