public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/100339] New: Bogus "should have been declared inside" error with friend
@ 2021-04-29 19:36 mpolacek at gcc dot gnu.org
  2021-04-29 19:37 ` [Bug c++/100339] [8/9/10/11/12 Regression] " mpolacek at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2021-04-29 19:36 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 100339
           Summary: Bogus "should have been declared inside" error with
                    friend
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mpolacek at gcc dot gnu.org
  Target Milestone: ---

template<typename T>
void fn (T);

class C {
  friend void ::fn(int);
  friend void ::fn<>(double);
  friend void ::fn<double *>(double *);
};

gives:

$ ./cc1plus -quiet q.C
q.C:5:23: error: ‘void fn(int)’ should have been declared inside ‘::’
    5 |   friend void ::fn(int);
      |                       ^

but ::fn(int) should refer to an instantiation of fn.

Started with r249385.

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

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

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29 19:36 [Bug c++/100339] New: Bogus "should have been declared inside" error with friend mpolacek at gcc dot gnu.org
2021-04-29 19:37 ` [Bug c++/100339] [8/9/10/11/12 Regression] " mpolacek at gcc dot gnu.org
2021-05-14  9:54 ` [Bug c++/100339] [9/10/11/12 " jakub at gcc dot gnu.org
2021-06-01  8:20 ` rguenth at gcc dot gnu.org
2021-12-13 15:51 ` pinskia at gcc dot gnu.org
2021-12-13 16:06 ` pinskia at gcc dot gnu.org
2021-12-13 16:09 ` pinskia 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).