Douglas Gregor | 3a348c8 | 2011-07-14 04:54:23 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
| 2 | |
| 3 | // FIXME: The diagnostics and recovery here are very, very poor. |
| 4 | |
| 5 | // PR10355 |
Kaelyn Uhrain | f0c1d8f | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 6 | template<typename T> void template_id1() { // expected-note {{'template_id1' declared here}} \ |
| 7 | // expected-note {{candidate function}} |
| 8 | template_id2<> t; // expected-error {{no template named 'template_id2'; did you mean 'template_id1'?}} \ |
| 9 | // expected-error {{expected ';' after expression}} \ |
| 10 | // expected-error {{cannot resolve overloaded function 'template_id1' from context}} \ |
| 11 | // expected-error {{use of undeclared identifier 't'}} |
Douglas Gregor | 3a348c8 | 2011-07-14 04:54:23 +0000 | [diff] [blame] | 12 | } |