2011-07-14 12:54:23 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
// FIXME: The diagnostics and recovery here are very, very poor.
|
|
|
|
|
|
|
|
// PR10355
|
2011-08-04 04:36:05 +08:00
|
|
|
template<typename T> void template_id1() { // expected-note {{'template_id1' declared here}} \
|
|
|
|
// expected-note {{candidate function}}
|
|
|
|
template_id2<> t; // expected-error {{no template named 'template_id2'; did you mean 'template_id1'?}} \
|
|
|
|
// expected-error {{expected ';' after expression}} \
|
|
|
|
// expected-error {{cannot resolve overloaded function 'template_id1' from context}} \
|
|
|
|
// expected-error {{use of undeclared identifier 't'}}
|
2011-07-14 12:54:23 +08:00
|
|
|
}
|