Allocates memory for a class and emplaces it.
t { class Test { int a, b, c; } Test test; assert(test is null); test = xalloc!Test(); assert(test !is null)
See Implementation
Allocates memory for a class and emplaces it.