Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 2 | template<typename T> |
| 3 | struct X0 { |
| 4 | typedef T* type; |
| 5 | |
| 6 | void f0(T); |
| 7 | void f1(type); |
| 8 | }; |
| 9 | |
| 10 | template<> void X0<char>::f0(char); |
| 11 | template<> void X0<char>::f1(type); |
Douglas Gregor | 2fa9800 | 2010-02-16 19:28:15 +0000 | [diff] [blame] | 12 | |
| 13 | namespace PR6161 { |
| 14 | template<typename _CharT> |
| 15 | class numpunct : public locale::facet // expected-error{{use of undeclared identifier 'locale'}} \ |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 16 | // expected-error{{expected class name}} |
Douglas Gregor | 2fa9800 | 2010-02-16 19:28:15 +0000 | [diff] [blame] | 17 | { |
Jeffrey Yasskin | edc2877 | 2010-04-07 23:29:58 +0000 | [diff] [blame] | 18 | static locale::id id; // expected-error{{use of undeclared identifier}} |
Douglas Gregor | 2fa9800 | 2010-02-16 19:28:15 +0000 | [diff] [blame] | 19 | }; |
Douglas Gregor | d65587f | 2010-11-10 19:44:59 +0000 | [diff] [blame] | 20 | numpunct<char>::~numpunct(); // expected-error{{expected the class name after '~' to name a destructor}} |
Douglas Gregor | 2fa9800 | 2010-02-16 19:28:15 +0000 | [diff] [blame] | 21 | } |