public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/98410] New: Default constructor generation fails on abstract class with virtual base
@ 2020-12-21 11:19 thelordlucas at gmail dot com
  2020-12-21 13:31 ` [Bug c++/98410] " marxin at gcc dot gnu.org
  2022-05-23  9:35 ` redi at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: thelordlucas at gmail dot com @ 2020-12-21 11:19 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 98410
           Summary: Default constructor generation fails on abstract class
                    with virtual base
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thelordlucas at gmail dot com
  Target Milestone: ---

Hi all,

The following code fails to compile on GCC > 7:

class Base {
    int x;
public:
    Base(int x): x{x} {}
    virtual void f() = 0;
};

class Derived : public virtual Base  {
  public:
    Derived() = default;
};

class Concrete: public Derived {
public:
    Concrete(): Base{42} {}
    void f() override {}
};

Link to code: https://godbolt.org/z/bn1EY6


It says that the Derived() constructor is deleted (error: use of deleted
function 'Derived::Derived()'). Using Derived() {}; it compiles file. 

As the user eerorika points out in
https://stackoverflow.com/questions/65287323/strange-default-empty-constructor-on-a-virtual-inheritance-behaviour-on-gcc
the constructor Derived() should not have been deleted, since it is also
abstract and doesn't fall in any default constructor deletion rule.

Maybe related, it yielded "internal compiler error: in
maybe_explain_implicit_delete, at cp/method.c:2671" if I add the noexcept to
the deleted constructor:

class Base {
    int x;
public:
    Base(int x): x{x} {}
    virtual void f() = 0;
};

class Derived : public virtual Base  {
  public:
    Derived() noexcept = default;
};

class Concrete: public Derived {
public:
    Concrete(): Base{42} {}
    void f() override {}
};

Link to code: https://godbolt.org/z/5fx8Ph

I tested clang trunk, and it compiles both versions.

Thanks!

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

* [Bug c++/98410] Default constructor generation fails on abstract class with virtual base
  2020-12-21 11:19 [Bug c++/98410] New: Default constructor generation fails on abstract class with virtual base thelordlucas at gmail dot com
@ 2020-12-21 13:31 ` marxin at gcc dot gnu.org
  2022-05-23  9:35 ` redi at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: marxin at gcc dot gnu.org @ 2020-12-21 13:31 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org,
                   |                            |mpolacek at gcc dot gnu.org,
                   |                            |nathan at gcc dot gnu.org
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2020-12-21

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed.

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

* [Bug c++/98410] Default constructor generation fails on abstract class with virtual base
  2020-12-21 11:19 [Bug c++/98410] New: Default constructor generation fails on abstract class with virtual base thelordlucas at gmail dot com
  2020-12-21 13:31 ` [Bug c++/98410] " marxin at gcc dot gnu.org
@ 2022-05-23  9:35 ` redi at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: redi at gcc dot gnu.org @ 2022-05-23  9:35 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |DUPLICATE
             Status|NEW                         |RESOLVED

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I think this is PR 91159

*** This bug has been marked as a duplicate of bug 91159 ***

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

end of thread, other threads:[~2022-05-23  9:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-21 11:19 [Bug c++/98410] New: Default constructor generation fails on abstract class with virtual base thelordlucas at gmail dot com
2020-12-21 13:31 ` [Bug c++/98410] " marxin at gcc dot gnu.org
2022-05-23  9:35 ` redi 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).