From d8a52a7831e19eb7a7d9a3be83bbd93078cca6c3 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 12 Nov 2014 01:43:45 +0000 Subject: PR21536: Fix a corner case where we'd get confused by a pack expanding into the penultimate parameter of a template parameter list, where the last parameter is itself a pack, and build a bogus empty final pack argument. llvm-svn: 221748 --- clang/test/SemaTemplate/deduction.cpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'clang/test/SemaTemplate/deduction.cpp') diff --git a/clang/test/SemaTemplate/deduction.cpp b/clang/test/SemaTemplate/deduction.cpp index 59162b74cc6..797f7f8261b 100644 --- a/clang/test/SemaTemplate/deduction.cpp +++ b/clang/test/SemaTemplate/deduction.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 // Template argument deduction with template template parameters. template class A> @@ -162,3 +162,19 @@ namespace test14 { foo(a); } } + +namespace PR21536 { + template struct X; + template struct S { + static_assert(sizeof...(B) == 1, ""); + void f() { + using T = A; + using T = int; + + using U = X; + using U = X; + } + }; + template void f(S); + void g() { f(S()); } +} -- cgit v1.2.3