llvm-project/clang/test/SemaTemplate/partial-spec-instantiate.cpp

21 lines
288 B
C++

// RUN: %clang_cc1 -fsyntax-only %s
// PR4607
template <class T> struct X {};
template <> struct X<char>
{
static char* g();
};
template <class T> struct X2 {};
template <class U>
struct X2<U*> {
static void f() {
X<U>::g();
}
};
void a(char *a, char *b) {X2<char*>::f();}