1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
153 B
C++
15 lines
153 B
C++
template <typename T> struct S;
|
|
|
|
template<typename T> void c(T)
|
|
{
|
|
}
|
|
|
|
template <> struct S <int>
|
|
{
|
|
void a()
|
|
{
|
|
c(&S<int>::b);
|
|
}
|
|
void b() {}
|
|
};
|