c++: static_assert (false) in template [DR2518]
commit9944ca17c0766623bce260684edc614def7ea761
authorJason Merrill <jason@redhat.com>
Sat, 11 Feb 2023 00:16:45 +0000 (10 16:16 -0800)
committerJason Merrill <jason@redhat.com>
Sat, 18 Feb 2023 21:18:12 +0000 (18 16:18 -0500)
tree433405c6b696b5781e67c8be5fd8f57a6e65f565
parent32b5875c911f80d551d006d7473e6f1f8705857a
c++: static_assert (false) in template [DR2518]

For a long time, people have expected to be able to write
static_assert (false) in a template and only have it diagnosed if the
template is instantiated, but we (and other implementations) gave an error
about the uninstantiated template because the standard says that if no valid
instantiation of the template is possible, the program is ill-formed, no
diagnostic required, and we try to diagnose IFNDR things when feasible.

At the meeting last week we were looking at CWG2518, which wanted to specify
that an implementation must not accept a program containing a failing #error
or static_assert.  We also looked at P2593, which proposed allowing
static_assert in an uninstantiated template.  We ended up combining these
two in order to avoid requiring implementations to reject programs with
static_assert (false) in uninstantiated templates.

The committee accepted this as a DR, so I'm making the change to all
standard modes.  This behavior was also conformant previously, since no
diagnostic was required in this case.

We continue to diagnose non-constant or otherwise ill-formed conditions, so
no changes to existing tests were needed.

DR 2518
PR c++/52809
PR c++/53638
PR c++/87389
PR c++/89741
PR c++/92099
PR c++/104041
PR c++/104691

gcc/cp/ChangeLog:

* semantics.cc (finish_static_assert): Don't diagnose in
template context.

gcc/testsuite/ChangeLog:

* g++.dg/DRs/dr2518.C: New test.
gcc/cp/semantics.cc
gcc/testsuite/g++.dg/DRs/dr2518.C [new file with mode: 0644]