From: Richard Smith Date: Thu, 19 Jul 2018 19:05:13 +0000 (+0000) Subject: Fix failing testcase to actually be valid. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=add6b02377f0bec53d6a89be6dce07717d63c30e;p=clang Fix failing testcase to actually be valid. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337483 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaTemplate/pack-deduction.cpp b/test/SemaTemplate/pack-deduction.cpp index db0bb58526..f9309d5211 100644 --- a/test/SemaTemplate/pack-deduction.cpp +++ b/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 {