]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/ddoc4899.d
Merge dmd upstream 5220ad51e
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc4899.d
1 // PERMUTE_ARGS:
2 // REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -wi -o-
3
4 /*
5 TEST_OUTPUT:
6 ---
7 compilable/ddoc4899.d(18): Warning: Ddoc: Stray '('. This may cause incorrect Ddoc output. Use $(LPAREN) instead for unpaired left parentheses.
8 compilable/ddoc4899.d(19): Warning: Ddoc: Stray ')'. This may cause incorrect Ddoc output. Use $(RPAREN) instead for unpaired right parentheses.
9 ---
10 */
11
12 /++
13 (See accompanying file LICENSE_1_0.txt or copy at
14 foo:)
15 +/
16 module d;
17
18 /** ( */ int a;
19 /** ) */ int b;
20
21 void main()
22 {
23 }