]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/ddoc13270.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc13270.d
CommitLineData
b4c522fa
IB
1// PERMUTE_ARGS: -w
2// REQUIRED_ARGS: -o- -D -Dd${RESULTS_DIR}/compilable
5fee5ec3 3// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
b4c522fa
IB
4
5module 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 */
15void doStuff(string task) {}
16
17/// ditto
18void doStuff(string[] tasks, int maxJobs) {}