blob: 3156892a72346ea8a08c62fd3fe67055b1ae6037 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s
Douglas Gregor37d93e92009-08-02 23:24:31 +00002
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();}