public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17
@ 2020-05-07 11:57 andrey.vihrov at gmail dot com
  2020-05-07 16:36 ` [Bug c++/94983] " redi at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: andrey.vihrov at gmail dot com @ 2020-05-07 11:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 94983
           Summary: Empty list initialization of aggregate class with
                    deleted default ctor rejected in C++14 and C++17
           Product: gcc
           Version: 9.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: andrey.vihrov at gmail dot com
  Target Milestone: ---

Consider the following C++ sample:

    struct S
    {
        S() = delete;
    };

    void foo()
    {
        new S{};
    }

In C++11 to C++17, S is an aggregate type. In C++20, S is not an aggregate type
(has a user-declared constructor).

In C++11, list initialization will perform value initialization if the
initializer list is empty and the class has a default constructor; otherwise,
if the class is an aggregate type, aggregate initialization will be performed.
Since C++14, the order is reversed: if the class is an aggregate type,
aggregate initialization will be performed; otherwise, value initialization
will be performed if the initializer list is empty and the class has a default
constructor.

Value initialization performs default initialization for S. Default
initialization calls the deleted default constructor.

Aggregate initialization has no effect and succeeds for S.

Putting this together:
* In C++11: S should be default-initialized and fail to compile
* In C++14: S should be aggregate-initialized and succeed
* In C++17: S should be aggregate-initialized and succeed
* In C++20: S should be default-initialized and fail to compile

GCC correctly rejects the sample with -std=c++11 and -std=c++2a. However, the
sample is also incorrectly rejected with -std=c++14 and -std=c++17.

Additionally, a variation of the sample gives different results, although it
should behave the same:

    void foo()
    {
        S{};
    }

GCC gives:
* -std=c++11: OK (incorrect)
* -std=c++14: OK (correct)
* -std=c++17: OK (correct)
* -std=c++2a: rejected (correct)

It is understandable, though, if GCC does not intend to change behavior for
C++11.


gcc -v:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/9.3.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib
--libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info
--with-pkgversion='Arch Linux 9.3.0-1'
--with-bugurl=https://bugs.archlinux.org/
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-shared
--enable-threads=posix --with-system-zlib --with-isl --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch
--disable-libssp --enable-gnu-unique-object --enable-linker-build-id
--enable-lto --enable-plugin --enable-install-libiberty
--with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib
--disable-werror --enable-checking=release --enable-default-pie
--enable-default-ssp --enable-cet=auto gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
gcc version 9.3.0 (Arch Linux 9.3.0-1)

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

* [Bug c++/94983] Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17
  2020-05-07 11:57 [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17 andrey.vihrov at gmail dot com
@ 2020-05-07 16:36 ` redi at gcc dot gnu.org
  2020-05-07 18:21 ` andrey.vihrov at gmail dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: redi at gcc dot gnu.org @ 2020-05-07 16:36 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1008r1.pdf was the
C++20 change, and the appendix shows the messy history.

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

* [Bug c++/94983] Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17
  2020-05-07 11:57 [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17 andrey.vihrov at gmail dot com
  2020-05-07 16:36 ` [Bug c++/94983] " redi at gcc dot gnu.org
@ 2020-05-07 18:21 ` andrey.vihrov at gmail dot com
  2020-05-09  8:19 ` redi at gcc dot gnu.org
  2020-05-13 15:41 ` andrey.vihrov at gmail dot com
  3 siblings, 0 replies; 5+ messages in thread
From: andrey.vihrov at gmail dot com @ 2020-05-07 18:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Andrey Vihrov <andrey.vihrov at gmail dot com> ---
Thanks for the helpful link.

To clarify, list initialization in a new-expression context behaves differently
from other cases such as "S{};" and "S s{};" (be their behavior correct or
incorrect).

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

* [Bug c++/94983] Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17
  2020-05-07 11:57 [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17 andrey.vihrov at gmail dot com
  2020-05-07 16:36 ` [Bug c++/94983] " redi at gcc dot gnu.org
  2020-05-07 18:21 ` andrey.vihrov at gmail dot com
@ 2020-05-09  8:19 ` redi at gcc dot gnu.org
  2020-05-13 15:41 ` andrey.vihrov at gmail dot com
  3 siblings, 0 replies; 5+ messages in thread
From: redi at gcc dot gnu.org @ 2020-05-09  8:19 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2020-05-09
           Keywords|                            |rejects-valid
     Ever confirmed|0                           |1

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

* [Bug c++/94983] Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17
  2020-05-07 11:57 [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17 andrey.vihrov at gmail dot com
                   ` (2 preceding siblings ...)
  2020-05-09  8:19 ` redi at gcc dot gnu.org
@ 2020-05-13 15:41 ` andrey.vihrov at gmail dot com
  3 siblings, 0 replies; 5+ messages in thread
From: andrey.vihrov at gmail dot com @ 2020-05-13 15:41 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Andrey Vihrov <andrey.vihrov at gmail dot com> ---
Another sample, probably caused by the same underlying issue:

    struct T
    {
        char a[3];
    };

    void bar()
    {
        T t{"x"};   // OK
        T{"x"};     // OK
        new T{"x"}; // error: could not convert '{"x"}' from
                    // '<brace-enclosed initializer list>' to 'T'
    }

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

end of thread, other threads:[~2020-05-13 15:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-07 11:57 [Bug c++/94983] New: Empty list initialization of aggregate class with deleted default ctor rejected in C++14 and C++17 andrey.vihrov at gmail dot com
2020-05-07 16:36 ` [Bug c++/94983] " redi at gcc dot gnu.org
2020-05-07 18:21 ` andrey.vihrov at gmail dot com
2020-05-09  8:19 ` redi at gcc dot gnu.org
2020-05-13 15:41 ` andrey.vihrov at gmail dot com

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