mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 15:46:08 +00:00
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() {}
|
|
};
|