]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/ddoc11511.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc11511.d
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -w -D -Dd${RESULTS_DIR}/compilable -o-
3 // POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 11511
4 module ddoc11511;
5
6 /**
7 Params:
8 abcd = none1
9 bcdef = none23
10 ... = doo
11 */
12 void foo(int abcd, int bcdef, ...);
13
14 /**
15 Params:
16 abcd = none1
17 bcdef = none23
18 arr = doo
19 */
20 void foo(int abcd, int bcdef, int[] arr...);