aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CXX/drs/cwg23xx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CXX/drs/cwg23xx.cpp')
-rw-r--r--clang/test/CXX/drs/cwg23xx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/drs/cwg23xx.cpp b/clang/test/CXX/drs/cwg23xx.cpp
index 1285665..72cf249 100644
--- a/clang/test/CXX/drs/cwg23xx.cpp
+++ b/clang/test/CXX/drs/cwg23xx.cpp
@@ -440,7 +440,7 @@ template <> struct tuple_size<cwg2386::Bad2> {
namespace cwg2386 {
void no_value() { auto [x, y] = Bad1(); }
void wrong_value() { auto [x, y] = Bad2(); }
-// since-cxx17-error@-1 {{type 'Bad2' decomposes into 42 elements, but only 2 names were provided}}
+// since-cxx17-error@-1 {{type 'Bad2' binds to 42 elements, but only 2 names were provided}}
#endif
} // namespace cwg2386