1 // PERMUTE_ARGS: -w 2 // REQUIRED_ARGS: -o- -D -Dd${RESULTS_DIR}/compilable 3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 13270 4 5 module ddoc13270; 6 7 /** 8 * My overloaded function. 9 * 10 * Params: 11 * task = String description of stuff to do. 12 * tasks = Array of descriptions of stuff to do. 13 * maxJobs = Max parallel jobs to run while doing stuff. 14 */ 15 void doStuff(string task) {} 16 17 /// ditto 18 void doStuff(string[] tasks, int maxJobs) {}