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

* [Bug c++/50736] [C++0x] ISO_IEC_14882-2011-5.1.2/10 - bug
  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 ` 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
  2 siblings, 0 replies; 4+ messages in thread
From: paolo.carlini at oracle dot com @ 2011-10-15 20:51 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-10-15 20:50:58 UTC ---
(of course no need to use <iostream> to test this)


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

* [Bug c++/50736] [C++0x] ISO_IEC_14882-2011-5.1.2/10 - bug
  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
  2 siblings, 0 replies; 4+ messages in thread
From: jason at gcc dot gnu.org @ 2011-10-17 19:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> 2011-10-17 18:59:45 UTC ---
Author: jason
Date: Mon Oct 17 18:59:41 2011
New Revision: 180105

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=180105
Log:
    PR c++/50736
    * parser.c (cp_parser_lambda_introducer): Check for more
    invalid captures.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-capture-neg.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug c++/50736] [C++0x] ISO_IEC_14882-2011-5.1.2/10 - bug
  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
  2 siblings, 0 replies; 4+ messages in thread
From: jason at gcc dot gnu.org @ 2011-10-17 19:01 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
         AssignedTo|unassigned at gcc dot       |jason at gcc dot gnu.org
                   |gnu.org                     |
   Target Milestone|---                         |4.7.0

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> 2011-10-17 19:00:58 UTC ---
Fixed for 4.7.


^ 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).