bolt/deps/llvm-18.1.8/clang/test/Index/Inputs/reparse-instantiate.h
2025-02-14 19:21:04 +01:00

14 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() {}
};