Set the return type.
pure int answer(); mixin( refract!(answer, "answer").setName("realAnswer") .setReturnType("real") .mixture); static assert(is(typeof(realAnswer()) == real));
See Implementation
Set the return type.