From 6298b44448c9edf852694d2bb9ed35c04325b098 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 4 Jan 2017 02:03:39 +0000 Subject: [PATCH] Remove accidentally-added lines in r290923 test, and add another testcase. llvm-svn: 290926 --- clang/test/SemaTemplate/deduction.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/clang/test/SemaTemplate/deduction.cpp b/clang/test/SemaTemplate/deduction.cpp index fdf21bc79a5d..5695cab9a27e 100644 --- a/clang/test/SemaTemplate/deduction.cpp +++ b/clang/test/SemaTemplate/deduction.cpp @@ -385,8 +385,6 @@ namespace overload_vs_pack { int n1 = g1(X(), f, g); // expected-error {{no matching function}} int n2 = g2(x, f, g); // expected-error {{no matching function}} - int n3 = g1(X(), f); - int n4 = g2(x, f); int &a1 = h1(0); // ok, skip deduction for 'f's, deduce matching value from 'g' int &a2 = h2(0); @@ -399,4 +397,13 @@ namespace overload_vs_pack { template int partial_deduction_2(void (*...f)(T), ...); // expected-note {{deduced incomplete pack <(no value), double> for template parameter 'T'}} int pd2 = partial_deduction_2(f, g); // expected-error {{no matching function}} + + namespace cwg_example { + void f(char, char); + void f(int, int); + void x(int, char); + + template void j(void(*)(U...), void (*...fns)(T, U)); + void test() { j(x, f, x); } + } }