blob: 8d1ae238977c5a64029e969274a08f0a3220216a [file] [log] [blame]
Douglas Gregor37d93e92009-08-02 23:24:31 +00001// RUN: clang-cc -fsyntax-only %s
2
3// PR4607
4template <class T> struct X {};
5
6template <> struct X<char>
7{
8 static char* g();
9};
10
11template <class T> struct X2 {};
12
13template <class U>
14struct X2<U*> {
15 static void f() {
16 X<U>::g();
17 }
18};
19
20void a(char *a, char *b) {X2<char*>::f();}