dfmt/tests/otbs/issue0465.d.ref

8 lines
241 B
Plaintext

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;
}