aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/string-plus-int.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/string-plus-int.cpp')
-rw-r--r--test/SemaCXX/string-plus-int.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/SemaCXX/string-plus-int.cpp b/test/SemaCXX/string-plus-int.cpp
index 5752f8f96631..fe9c71949698 100644
--- a/test/SemaCXX/string-plus-int.cpp
+++ b/test/SemaCXX/string-plus-int.cpp
@@ -64,3 +64,8 @@ void f(int index) {
consume(A B + sizeof(A) - 1);
}
+template <typename T>
+void PR21848() {
+ (void)(sizeof(T) + ""); // expected-warning {{to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
+}
+template void PR21848<int>(); // expected-note {{in instantiation of function template specialization 'PR21848<int>' requested here}}