reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
// RUN: %clang_cc1 -std=c++11 -verify %s
// expected-no-diagnostics

// If the name declared in the explicit instantiation is an
// unqualified name, the explicit instantiation shall appear in the
// namespace where its template is declared or, if that namespace is
// inline (7.3.1), any namespace from its enclosing namespace set.

namespace has_inline_namespaces {
  inline namespace inner {
    template<class T> void f(T&) {}

    template<class T> 
    struct X0 {
      struct MemberClass {};

      void mem_func() {}

      template<typename U>
      struct MemberClassTemplate {};

      template<typename U>
      void mem_func_template(U&) {}

      static int value;
    };
  }

  template<typename T> int X0<T>::value = 17;

  struct X1 {};
  struct X2 {};

  template void f(X1&);
  template void f<X2>(X2&);

  template struct X0<X1>;

  template struct X0<X2>::MemberClass;

  template void X0<X2>::mem_func();

  template struct X0<X2>::MemberClassTemplate<X1>;

  template void X0<X2>::mem_func_template(X1&);

  template int X0<X2>::value;
}

struct X3;
struct X4;

template void has_inline_namespaces::f(X3&);
template void has_inline_namespaces::f<X4>(X4&);

template struct has_inline_namespaces::X0<X3>;

template struct has_inline_namespaces::X0<X4>::MemberClass;

template void has_inline_namespaces::X0<X4>::mem_func();

template 
struct has_inline_namespaces::X0<X4>::MemberClassTemplate<X3>;

template
void has_inline_namespaces::X0<X4>::mem_func_template(X3&);