blob: f0eee2ba2f8a13f2669983a4c20b270a8c644002 [file] [log] [blame]
Matt Beaumont-Gay3a51d412011-08-25 23:22:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2class G {};
3template <Foo> // expected-error{{unknown type name 'Foo'}} \
4 // expected-note{{template parameter is declared here}}
5class Bar {};
6
7class Bar<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}