public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55720] New: [C++11] Linkage errors of static data member initializers with lambdas
@ 2012-12-17 14:01 daniel.kruegler at googlemail dot com
  2012-12-17 14:05 ` [Bug c++/55720] " daniel.kruegler at googlemail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: daniel.kruegler at googlemail dot com @ 2012-12-17 14:01 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55720
           Summary: [C++11] Linkage errors of static data member
                    initializers with lambdas
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: daniel.kruegler@googlemail.com


The following program compiled with gcc 4.7.2 using the flags

-Wall -std=c++0x -pedantic

//------------------------
template <class T>
struct X {
  static void (*code) ();
};

template <class T>
void (*X<T>::code) () = []{};  // Line 7

int main () {
  X<int>::code();
}
//------------------------

gives a linkage error:

"|In function `X<int>::code::{lambda()#1}::operator void (*)()() const':|
7|undefined reference to `X<int>::code::{lambda()#1}::_FUN()'|
"

The code should be accepted.


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

end of thread, other threads:[~2013-02-13 18:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-17 14:01 [Bug c++/55720] New: [C++11] Linkage errors of static data member initializers with lambdas daniel.kruegler at googlemail dot com
2012-12-17 14:05 ` [Bug c++/55720] " daniel.kruegler at googlemail dot com
2013-01-07 17:10 ` paolo.carlini at oracle dot com
2013-01-14 16:42 ` redi at gcc dot gnu.org
2013-02-13 18:16 ` jason 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).