diff --git a/mvd.d b/mvd.d index be79209..7fda216 100644 --- a/mvd.d +++ b/mvd.d @@ -29,7 +29,15 @@ module arsd.mvd; import std.traits; /// This exists just to make the documentation of [mvd] nicer looking. -alias CommonReturnOfOverloads(alias fn) = CommonType!(staticMap!(ReturnType, __traits(getOverloads, __traits(parent, fn), __traits(identifier, fn)))); +template CommonReturnOfOverloads(alias fn) { + alias overloads = __traits(getOverloads, __traits(parent, fn), __traits(identifier, fn)); + static if (overloads.length == 1) { + alias CommonReturnOfOverloads = ReturnType!(overloads[0]); + } + else { + alias CommonReturnOfOverloads = CommonType!(staticMap!(ReturnType, overloads)); + } +} /// See details on the [arsd.mvd] page. CommonReturnOfOverloads!fn mvd(alias fn, T...)(T args) { @@ -149,3 +157,20 @@ unittest { //mvd!bar(new OtherClass); } + +/// +unittest { + class MyClass {} + + static bool success = false; + + static struct Wrapper { + static: + void foo(MyClass a) { success = true; } + } + + with(Wrapper) { + mvd!foo(new MyClass); + assert(success); + } +}