mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
20 lines
418 B
D
20 lines
418 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
|
|
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
|
|
|
|
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 ğ;
|
|
}
|