diff options
author | John McCall <rjmccall@apple.com> | 2010-07-30 06:26:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-30 06:26:29 +0000 |
commit | 207014eb2b372aa33721e86d90a8a586ba8dc8ae (patch) | |
tree | 4b927c519af3af593ad65ec58ba61855c618d75e /test/SemaTemplate/deduction-crash.cpp | |
parent | 27940d2fb346325d6001a7661e4ada099cd8e59c (diff) |
Improve error recovery when presented with an ill-formed template-id
(e.g. due to a broken template argument) following template parameters.
Fixes rdar://problem/8254267
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/deduction-crash.cpp')
-rw-r--r-- | test/SemaTemplate/deduction-crash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaTemplate/deduction-crash.cpp b/test/SemaTemplate/deduction-crash.cpp index 1860c7577c..8f4b728181 100644 --- a/test/SemaTemplate/deduction-crash.cpp +++ b/test/SemaTemplate/deduction-crash.cpp @@ -4,7 +4,7 @@ // Note that the error count below doesn't matter. We just want to // make sure that the parser doesn't crash. -// CHECK: 16 errors +// CHECK: 15 errors template<a> struct int_; |