xref: /minix3/external/bsd/llvm/dist/clang/test/Index/Inputs/reparse-instantiate.h (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 template <typename T> struct S;
2 
3 template<typename T> void c(T)
4 {
5 }
6 
7 template <> struct S <int>
8 {
9   void a()
10   {
11     c(&S<int>::b);
12   }
13   void b() {}
14 };
15