blob: 197dae5a15afd139c5ec69b6e2ef49445b37e718 [file] [log] [blame]
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +00001// RUN: clang-cc -fsyntax-only -verify %s
2template<typename T>
3struct X0 {
4 typedef T* type;
5
6 void f0(T);
7 void f1(type);
8};
9
10template<> void X0<char>::f0(char);
11template<> void X0<char>::f1(type);