summaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx-template-argument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/cxx-template-argument.cpp')
-rw-r--r--clang/test/Parser/cxx-template-argument.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/Parser/cxx-template-argument.cpp b/clang/test/Parser/cxx-template-argument.cpp
new file mode 100644
index 0000000..c85b1c9
--- /dev/null
+++ b/clang/test/Parser/cxx-template-argument.cpp
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+template<typename T> struct A {};
+
+// Check for template argument lists followed by junk
+// FIXME: The diagnostics here aren't great...
+A<int+> int x; // expected-error {{expected '>'}} expected-error {{expected unqualified-id}}
+A<int x; // expected-error {{expected '>'}}
+
+// PR8912
+template <bool> struct S {};
+S<bool(2 > 1)> s;