public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/50736] New: ISO_IEC_14882-2011-5.1.2/10 - bug
@ 2011-10-15  9:28 i.nixman at gmail dot com
  2011-10-15 20:51 ` [Bug c++/50736] [C++0x] " paolo.carlini at oracle dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: i.nixman at gmail dot com @ 2011-10-15  9:28 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50736
           Summary: ISO_IEC_14882-2011-5.1.2/10 - bug
    Classification: Unclassified
           Product: gcc
           Version: 4.6.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: i.nixman@gmail.com


Quote from ISO_IEC_14882-2011, 5.1.2/10:
> The identifiers in a capture-list are looked up using 
> the usual rules for unqualified name lookup (3.4.1); each
> such lookup shall find a variable with automatic 
> storage duration declared in the reaching scope of the local
> lambda expression. An entity (i.e. a variable or this) is 
> said to be explicitly captured if it appears in the
> lambda-expression’s capture-list.

But this code successfuly compiled on gcc-4.6.1:
#include <iostream>
int main() {
  using std::cout;
  auto f = [&cout]() { cout << 1; }; // <<
  f();
}

http://liveworkspace.org/code/ae698b7daf7b5b531beafd9faaa6a409


Intel C++ 12.1 says: error : a variable with static storage
duration cannot be captured in a lambda


niXman.


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

end of thread, other threads:[~2011-10-17 19:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-15  9:28 [Bug c++/50736] New: ISO_IEC_14882-2011-5.1.2/10 - bug i.nixman at gmail dot com
2011-10-15 20:51 ` [Bug c++/50736] [C++0x] " paolo.carlini at oracle dot com
2011-10-17 19:00 ` jason at gcc dot gnu.org
2011-10-17 19:01 ` 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).