summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-04-05 16:56:02 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-04-05 16:56:02 +0000
commit3a7efa22405dd41893f0f1633a2e308bf041305a (patch)
tree4d2f724f8c276540dde9956f48e31dd54ed194c7 /clang/test
parentaf3c79f0acf7ddbc7167d55d302619b6a2078e1b (diff)
downloadbcm5719-llvm-3a7efa22405dd41893f0f1633a2e308bf041305a.tar.gz
bcm5719-llvm-3a7efa22405dd41893f0f1633a2e308bf041305a.zip
Improve & simplify diagnostic for missing 'class' in template template parameter.
Change suggested by Sebastian Redl on review feedback from r153887. llvm-svn: 154102
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/FixIt/fixit.cpp6
-rw-r--r--clang/test/Parser/cxx-template-decl.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/FixIt/fixit.cpp b/clang/test/FixIt/fixit.cpp
index c881c63e6b0..c61902d0287 100644
--- a/clang/test/FixIt/fixit.cpp
+++ b/clang/test/FixIt/fixit.cpp
@@ -200,7 +200,7 @@ template<class T> typedef Mystery<T>::type getMysteriousThing() { // \
return Mystery<T>::get();
}
-template<template<typename> Foo, // expected-error {{expected 'class' before 'Foo'}}
- template<typename> typename Bar, // expected-error {{expected 'class' instead of 'typename'}}
- template<typename> struct Baz> // expected-error {{expected 'class' instead of 'struct'}}
+template<template<typename> Foo, // expected-error {{template template parameters require 'class' after the argument list}}
+ template<typename> typename Bar, // expected-error {{template template parameters require 'class' after the argument list}}
+ template<typename> struct Baz> // expected-error {{template template parameters require 'class' after the argument list}}
void func();
diff --git a/clang/test/Parser/cxx-template-decl.cpp b/clang/test/Parser/cxx-template-decl.cpp
index 72f2d7d15d3..af3eb2ded5f 100644
--- a/clang/test/Parser/cxx-template-decl.cpp
+++ b/clang/test/Parser/cxx-template-decl.cpp
@@ -11,8 +11,8 @@ template < ; // expected-error {{parse error}} \
// expected-warning {{declaration does not declare anything}}
template <template X> struct Err1; // expected-error {{expected '<' after 'template'}} \
// expected-error{{extraneous}}
-template <template <typename> > struct Err2; // expected-error {{expected 'class' before '>'}}
-template <template <typename> Foo> struct Err3; // expected-error {{expected 'class' before 'Foo'}}
+template <template <typename> > struct Err2; // expected-error {{template template parameters require 'class' after the argument list}}
+template <template <typename> Foo> struct Err3; // expected-error {{template template parameters require 'class' after the argument list}}
// Template function declarations
template <typename T> void foo();
OpenPOWER on IntegriCloud