blob: a044ba064b58e479c7cf03dbf305679fdab30030 [file] [log] [blame]
// 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() {
}