From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26404 invoked by alias); 30 Nov 2010 03:04:57 -0000 Received: (qmail 26396 invoked by uid 22791); 30 Nov 2010 03:04:56 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 30 Nov 2010 03:04:50 +0000 From: "eplawless+gcc at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/46719] New: Cannot call C++0x variadic function template X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: eplawless+gcc at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Date: Tue, 30 Nov 2010 07:20:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-11/txt/msg03632.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D46719 Summary: Cannot call C++0x variadic function template Product: gcc Version: 4.6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: eplawless+gcc@gmail.com The following function template compiles without issue: template function curry(function func, FirstType arg) { return [func, arg](ArgTypes... args) -> Return { return func(arg, args...); }; } But as soon as I try to call it, like so: int main() { cout << curry([](int x) -> double { return static_cast(x); }, 10)(); return 0; } It throws the following error: error: no matching function for call to =E2=80=98curry(main()::, int)=E2=80=99 The version of G++ used was: g++ (GCC) 4.6.0 20101113 (experimental)