blob: 21f312db44a649c03d0039848a76b9fa8dcb84cf [file] [log] [blame]
// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh 9
// 273
/// Template Documentation (OK)
template Template(T) { }
/// Function Documentation (Not included at all by DDoc)
void Function(T)(T x) { }
/// Class Documentation (OK)
class Class(T) { }
/// Struct Documentation
struct Struct(T) { }
/// Union Documentation
union Union(T) { }
/// Template documentation with anonymous enum
template TemplateWithAnonEnum(T)
{
enum { TemplateWithAnonEnum = 1 }
}