private
{
    void privF() {}
    class privC {}
    struct privS {}
    union privU {}
    interface privI {}
    enum privE { foo }
    mixin template privMT() {}
    void privTF(T)() {}
    class privTC(T) {}
    struct privTS(T) {}
    union privTU(T) {}
    interface privTI(T) {}
}
void publF(T)() {}
void publFA(alias A)() {}
private alias privC privA;
public mixin template publMT() {}
/***************************************************/
// https://issues.dlang.org/show_bug.cgi?id=14169
template GetName14169(TemplateParam)
{
    enum GetName14169 = TemplateParam.Name;
}