Add missing part of test

llvm-svn: 143985
This commit is contained in:
Douglas Gregor 2011-11-07 18:54:12 +00:00
parent 61d63d0fd7
commit 80357c6227
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
template <typename T> struct S;
template<typename T> void c(T)
{
}
template <> struct S <int>
{
void a()
{
c(&S<int>::b);
}
void b() {}
};