Author: Aaron Ballman
Date: 2024-05-22T13:17:56-04:00
New Revision: f203cb03d93240cfd79e603b742006f96227a00b

URL: 
https://github.com/llvm/llvm-project/commit/f203cb03d93240cfd79e603b742006f96227a00b
DIFF: 
https://github.com/llvm/llvm-project/commit/f203cb03d93240cfd79e603b742006f96227a00b.diff

LOG: Fix a benign typo in a test; NFC

We were still matching the expected diagnostic, but this ensures we
match the opening quotation mark as well.

Added: 
    

Modified: 
    clang/test/CXX/expr/expr.unary/expr.sizeof/p5-0x.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CXX/expr/expr.unary/expr.sizeof/p5-0x.cpp 
b/clang/test/CXX/expr/expr.unary/expr.sizeof/p5-0x.cpp
index afd8ef05302fc..19f90801df31c 100644
--- a/clang/test/CXX/expr/expr.unary/expr.sizeof/p5-0x.cpp
+++ b/clang/test/CXX/expr/expr.unary/expr.sizeof/p5-0x.cpp
@@ -33,6 +33,6 @@ template<int Value> struct count_ints_2 {
 template<typename ...Types> // expected-note{{parameter pack 'Types' declared 
here}}
 struct count_types_2 {
   static const unsigned value = sizeof... Type; // expected-error{{missing 
parentheses around the size of parameter pack 'Type'}} \
-  // expected-error{{Type' does not refer to the name of a parameter pack; did 
you mean 'Types'?}}
+  // expected-error{{'Type' does not refer to the name of a parameter pack; 
did you mean 'Types'?}}
 };
 


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to