зеркало из https://github.com/microsoft/clang-1.git
Add missing part of test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
66e870029f
Коммит
21adcf3b5f
|
@ -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() {}
|
||||
};
|
Загрузка…
Ссылка в новой задаче