blob: 3d2f47e52bd34f4c1ff24adcd92ae283f4fb6a42 [file] [log] [blame]
// PERMUTE_ARGS: -w
// REQUIRED_ARGS: -o- -D -Dd${RESULTS_DIR}/compilable
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
module ddoc13270;
/**
* My overloaded function.
*
* Params:
* task = String description of stuff to do.
* tasks = Array of descriptions of stuff to do.
* maxJobs = Max parallel jobs to run while doing stuff.
*/
void doStuff(string task) {}
/// ditto
void doStuff(string[] tasks, int maxJobs) {}