]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/ddoc9475.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc9475.d
CommitLineData
b4c522fa
IB
1// PERMUTE_ARGS:
2// REQUIRED_ARGS: -D -w -o- -c -Dd${RESULTS_DIR}/compilable -o-
5fee5ec3 3// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
b4c522fa
IB
4
5module ddoc9475;
6
7/// foo
8void foo() { }
9
10///
11unittest
12{
13 // comment 1
14 foreach (i; 0 .. 10)
15 {
16 // comment 2
17 documentedFunction();
18 }
19}
20
21/// bar
22void bar() { }
23
24///
25unittest
26{
27 // bar comment
28}
29