blob: 3156892a72346ea8a08c62fd3fe67055b1ae6037 [file] [log] [blame]
// 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();}