blob: 3156892a72346ea8a08c62fd3fe67055b1ae6037 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -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();}