mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
18 lines
455 B
D
18 lines
455 B
D
// 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) {}
|