mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 22:26:39 +00:00

Produce the conventional "to match this '<'" note, so that the user knows why we expected a '>', and properly handle '>>' in C++11 onwards.
12 lines
366 B
C++
12 lines
366 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
template <class T>
|
|
struct X : public Foo<Bar { // expected-error {{unknown template name 'Foo'}} expected-error {{use of undeclared identifier 'Bar'}} expected-note {{to match this '<'}}
|
|
X();
|
|
}; // expected-error {{expected '>'}} expected-error {{expected '{' after base class list}}
|
|
|
|
|
|
template <class T>
|
|
X<T>::X() {
|
|
}
|