public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99692] New: Lookup for operator<< skips global scope
@ 2021-03-21  4:01 skaniskin at berkeley dot edu
  2021-03-21  5:26 ` [Bug libstdc++/99692] " pinskia at gcc dot gnu.org
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: skaniskin at berkeley dot edu @ 2021-03-21  4:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99692

            Bug ID: 99692
           Summary: Lookup for operator<< skips global scope
           Product: gcc
           Version: 10.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: skaniskin at berkeley dot edu
  Target Milestone: ---

The following code is rejected by g++. 

#include <ostream>
#include <vector>

struct CustomStream : std::ostream {};

std::ostream& operator<<(std::ostream& s, const std::vector<int>&) 
{
    return s;
}

CustomStream&& operator<<(CustomStream&& s, const std::vector<int>& v)  
{
    static_cast<std::ostream&>(s) << v;
    return std::move(s);
}

int main() 
{
    CustomStream() << std::vector<int>{};
}

The problem is there with all recent versions of gcc and independent of
compiler flags

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

end of thread, other threads:[~2021-12-16 18:47 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-21  4:01 [Bug c++/99692] New: Lookup for operator<< skips global scope skaniskin at berkeley dot edu
2021-03-21  5:26 ` [Bug libstdc++/99692] " pinskia at gcc dot gnu.org
2021-03-21  5:28 ` pinskia at gcc dot gnu.org
2021-03-21  6:01 ` skaniskin at gmail dot com
2021-03-21 12:21 ` redi at gcc dot gnu.org
2021-03-21 12:23 ` redi at gcc dot gnu.org
2021-03-21 13:56 ` skaniskin at gmail dot com
2021-03-21 23:24 ` redi at gcc dot gnu.org
2021-05-06  4:07 ` [Bug c++/99692] " skaniskin at gmail dot com
2021-05-06  9:05 ` redi at gcc dot gnu.org
2021-05-06  9:38 ` redi at gcc dot gnu.org
2021-05-06 12:12 ` redi at gcc dot gnu.org
2021-05-06 13:07 ` redi at gcc dot gnu.org
2021-12-16 18:47 ` ppalka 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).