bolt/deps/llvm-18.1.8/clang/test/Index/Inputs/reparse-instantiate.h

15 lines
153 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
template <typename T> struct S;
template<typename T> void c(T)
{
}
template <> struct S <int>
{
void a()
{
c(&S<int>::b);
}
void b() {}
};