public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/52757] New: [C++11] A lamba functions is not able to be used as a function pointer when passed as an explicit template argument
@ 2012-03-28 19:59 metaprogrammingtheworld at gmail dot com
  2012-03-28 20:10 ` [Bug c++/52757] " redi at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: metaprogrammingtheworld at gmail dot com @ 2012-03-28 19:59 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52757

             Bug #: 52757
           Summary: [C++11] A lamba functions is not able to be used as a
                    function pointer when passed as an explicit template
                    argument
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: metaprogrammingtheworld@gmail.com


The following are two simple test-cases for what appears to be the same
problem. The main issue is that you can't use a lambda function as a template
argument where the template parameter type is a function pointer type. It seems
that this happens because there is no constexpr conversion operator from the
lambda function type to the corresponding function pointer type (in places
where the pointer is not required to be a compile-time constant, the conversion
works properly, as expected).

First test-case:

//////////
template< int (*)() > struct foo;
typedef foo< [] { return 0; } > bar;
//////////

main.cpp:2:31: error: could not convert template argument '{}' to 'int (*)()'
main.cpp:2:36: error: invalid type in declaration before ';' token



Second test-case (error message may shed light on the root of the problem):

//////////
constexpr int (*foo)() = [] { return 0; };
//////////

main.cpp:1:41: error: '<lambda()>::operator int (*)()() const' is not a
constexpr function


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-03-28 20:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-28 19:59 [Bug c++/52757] New: [C++11] A lamba functions is not able to be used as a function pointer when passed as an explicit template argument metaprogrammingtheworld at gmail dot com
2012-03-28 20:10 ` [Bug c++/52757] " redi at gcc dot gnu.org
2012-03-28 20:13 ` metaprogrammingtheworld at gmail dot com
2012-03-28 20:45 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).