xref: /llvm-project/clang/test/SemaTemplate/missing-class-keyword-crash.cpp (revision 045bde420bc1fda33aee8610bcc4c0f4608cb2d7)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 class G {};
3 template <Foo> // expected-error{{unknown type name 'Foo'}} \
4                // expected-note{{template parameter is declared here}}
5 class Bar {};
6 
7 class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
8