public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
@ 2021-12-16  4:15 ` pinskia at gcc dot gnu.org
  2021-12-16  4:17 ` pinskia at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-12-16  4:15 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
      Known to fail|                            |7.1.0, 8.1.0
           Keywords|                            |needs-bisection
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2021-12-16
            Summary|Inherited member functions  |[9/10/11/12 Regression]
                   |do not create ambiguity     |Inherited member functions
                   |                            |do not create ambiguity
      Known to work|                            |5.1.0, 6.1.0, 6.4.0
   Target Milestone|---                         |9.5

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
A C++98 testcase:
struct S {
    char f();
};
template<typename T>
struct wrapper : private T {
    int f(int = 0);
        using T::f;
};
void g(void)
{
    wrapper<S> t;
    t.f();
}

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

* [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
  2021-12-16  4:15 ` [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity pinskia at gcc dot gnu.org
@ 2021-12-16  4:17 ` pinskia at gcc dot gnu.org
  2021-12-18 15:19 ` ppalka at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-12-16  4:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Even one without templates:
struct S {
    char f();
};
struct wrapper : private S {
    int f(int = 0);
        using S::f;
};
void g(void)
{
    wrapper t;
    t.f();
}
And yes it was rejected in GCC 6.4.0.

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

* [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
  2021-12-16  4:15 ` [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity pinskia at gcc dot gnu.org
  2021-12-16  4:17 ` pinskia at gcc dot gnu.org
@ 2021-12-18 15:19 ` ppalka at gcc dot gnu.org
  2022-01-21 13:51 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: ppalka at gcc dot gnu.org @ 2021-12-18 15:19 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|needs-bisection             |
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |ppalka at gcc dot gnu.org

--- Comment #3 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Started with r7-4255.

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

* [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2021-12-18 15:19 ` ppalka at gcc dot gnu.org
@ 2022-01-21 13:51 ` rguenth at gcc dot gnu.org
  2022-05-27  9:37 ` [Bug c++/82894] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-01-21 13:51 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2

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

* [Bug c++/82894] [10/11/12/13 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2022-01-21 13:51 ` rguenth at gcc dot gnu.org
@ 2022-05-27  9:37 ` rguenth at gcc dot gnu.org
  2022-06-28 10:33 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:37 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

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

* [Bug c++/82894] [10/11/12/13 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2022-05-27  9:37 ` [Bug c++/82894] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:33 ` jakub at gcc dot gnu.org
  2023-06-20 22:42 ` [Bug c++/82894] [10/11/12/13/14 " pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:33 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

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

* [Bug c++/82894] [10/11/12/13/14 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2022-06-28 10:33 ` jakub at gcc dot gnu.org
@ 2023-06-20 22:42 ` pinskia at gcc dot gnu.org
  2023-07-07 10:32 ` [Bug c++/82894] [11/12/13/14 " rguenth at gcc dot gnu.org
  2024-03-12 13:23 ` [Bug c++/82894] [11/12 " law at gcc dot gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-06-20 22:42 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |csaba_22 at yahoo dot co.uk

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 110330 has been marked as a duplicate of this bug. ***

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

* [Bug c++/82894] [11/12/13/14 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2023-06-20 22:42 ` [Bug c++/82894] [10/11/12/13/14 " pinskia at gcc dot gnu.org
@ 2023-07-07 10:32 ` rguenth at gcc dot gnu.org
  2024-03-12 13:23 ` [Bug c++/82894] [11/12 " law at gcc dot gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:32 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.5                        |11.5

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

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

* [Bug c++/82894] [11/12 Regression] Inherited member functions do not create ambiguity
       [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2023-07-07 10:32 ` [Bug c++/82894] [11/12/13/14 " rguenth at gcc dot gnu.org
@ 2024-03-12 13:23 ` law at gcc dot gnu.org
  8 siblings, 0 replies; 9+ messages in thread
From: law at gcc dot gnu.org @ 2024-03-12 13:23 UTC (permalink / raw)
  To: gcc-bugs

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

Jeffrey A. Law <law at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at gcc dot gnu.org
            Summary|[11/12/13/14 Regression]    |[11/12 Regression]
                   |Inherited member functions  |Inherited member functions
                   |do not create ambiguity     |do not create ambiguity

--- Comment #8 from Jeffrey A. Law <law at gcc dot gnu.org> ---
Works with gcc-13 and the trunk.  Adjusting markers.

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

end of thread, other threads:[~2024-03-12 13:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-82894-4@http.gcc.gnu.org/bugzilla/>
2021-12-16  4:15 ` [Bug c++/82894] [9/10/11/12 Regression] Inherited member functions do not create ambiguity pinskia at gcc dot gnu.org
2021-12-16  4:17 ` pinskia at gcc dot gnu.org
2021-12-18 15:19 ` ppalka at gcc dot gnu.org
2022-01-21 13:51 ` rguenth at gcc dot gnu.org
2022-05-27  9:37 ` [Bug c++/82894] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:33 ` jakub at gcc dot gnu.org
2023-06-20 22:42 ` [Bug c++/82894] [10/11/12/13/14 " pinskia at gcc dot gnu.org
2023-07-07 10:32 ` [Bug c++/82894] [11/12/13/14 " rguenth at gcc dot gnu.org
2024-03-12 13:23 ` [Bug c++/82894] [11/12 " law 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).