public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96213] New: GCC doesn't complain about ill-formed non-dependent template default argument
@ 2020-07-16  0:06 arthur.j.odwyer at gmail dot com
  2020-07-16 19:48 ` [Bug c++/96213] " mpolacek at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: arthur.j.odwyer at gmail dot com @ 2020-07-16  0:06 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96213
           Summary: GCC doesn't complain about ill-formed non-dependent
                    template default argument
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: arthur.j.odwyer at gmail dot com
  Target Milestone: ---

Possibly related (although these seem to complain about the opposite of what
I'm complaining about):
- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=12672
- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58071


    // https://godbolt.org/z/EYzxx9
    template<class> int g;

    template<int = g<int>(0,1,2)>
    void h() { }

    int main() {
        h<1>();
    }

MSVC and Clang both reject template `h` as ill-formed, because `g<int>(0,1,2)`
is nonsense -- `g<int>` is an `int` and thus cannot be called like a function.

GCC accepts template `h` as well-formed, and in fact will treat this as a
SFINAE situation:

    template<class> int g;
    template<int = g<int>(42)> void h() {} // #1
    template<class = void> void h() {}     // #2

    int main() {
        h<>();  // unambiguously calls #2, because #1 has a deduction failure
    }

My guess is that MSVC and Clang are closer to correct here.

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

end of thread, other threads:[~2023-11-09 19:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-16  0:06 [Bug c++/96213] New: GCC doesn't complain about ill-formed non-dependent template default argument arthur.j.odwyer at gmail dot com
2020-07-16 19:48 ` [Bug c++/96213] " mpolacek at gcc dot gnu.org
2020-07-23 20:27 ` arthur.j.odwyer at gmail dot com
2023-11-09 19:44 ` ppalka 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).