From d4d6e21269a36773ed5e61e7e6b69b9a852af79c Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 19 Jul 2018 19:05:13 +0000 Subject: [PATCH] Fix failing testcase to actually be valid. llvm-svn: 337483 --- clang/test/SemaTemplate/pack-deduction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/SemaTemplate/pack-deduction.cpp b/clang/test/SemaTemplate/pack-deduction.cpp index db0bb58..f9309d5 100644 --- a/clang/test/SemaTemplate/pack-deduction.cpp +++ b/clang/test/SemaTemplate/pack-deduction.cpp @@ -152,7 +152,7 @@ namespace partial_full_mix { pair, tuple> k4 = A().g(pair(), pair(), pair()); // expected-error {{no match}} // FIXME: We should accept this by treating the pack of pairs as having a fixed length of 2 here. - tuple k5 = A::h(tuple, pair, pair>()); // expected-error {{no match}} + tuple k5 = A::h(tuple, pair, pair>()); // expected-error {{no match}} } namespace substitution_vs_function_deduction { -- 2.7.4