mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
25 lines
482 B
D
25 lines
482 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
|
|
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
|
|
|
|
/// struct doc
|
|
struct Bug4107(T)
|
|
{
|
|
/// templated function doc
|
|
void foo(U)(U u) { }
|
|
}
|
|
|
|
/// alpha
|
|
struct Bug4107b(T) {
|
|
/// beta
|
|
struct B(U) {
|
|
/// gamma
|
|
struct C(V) {
|
|
/// delta
|
|
struct D(W) {
|
|
/// epsilon
|
|
B!W e(X)(C!V c, X[] x...) {}
|
|
}
|
|
}
|
|
}
|
|
}
|