aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/ddoc12.d
blob: 4fdf9cff1ef8c30eaa736baffba9d464852f4adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 12

int ruhred; /// This documents correctly.
int rühred; /// This should too

/**
 * BUG: The parameters are not listed under Params in the generated output
 *
 * Params:
 *     ü = first
 *     ş = second
 *     ğ = third
 *
 */
int foo(int ü, int ş, int ğ)
{
    return ğ;
}