Yazan Dabain

Results 2 issues of Yazan Dabain

Test case: ```d auto fun(ushort a1, uint a2) { return a1 + a2; } int main() { ushort s = 0xC00D; uint i = 0xDEAD_BEAF; fun(s, i); return 0; }...

In an attempt to implement timeout for `requestHTTP`, I wrote the function below: ```D T timeout(T)(T delegate() expr, Duration period) { auto event = createManualEvent(); bool finishedNormally = false; Exception...