summaryrefslogtreecommitdiff
path: root/test/SemaTemplate/missing-class-keyword-crash.cpp
blob: f0eee2ba2f8a13f2669983a4c20b270a8c644002 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -verify %s
class G {};
template <Foo> // expected-error{{unknown type name 'Foo'}} \
               // expected-note{{template parameter is declared here}}
class Bar {};

class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}