dfmt/tests/issue0465.d

10 lines
257 B
D

bool asdf(const string owner, const string mail) @safe
{
requestHTTP(url, (scope HTTPClientRequest request) {
request.writeFormBody([owner: owner, mail:
mail]);
}, (scope HTTPClientResponse response) {});
return true;
}