]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/ddoc11511.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[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
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...);