public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "j-l.wynen at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/105716] New: CTAD failure with member function returning auto as template argument
Date: Tue, 24 May 2022 09:30:46 +0000	[thread overview]
Message-ID: <bug-105716-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 105716
           Summary: CTAD failure with member function returning auto as
                    template argument
           Product: gcc
           Version: 12.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j-l.wynen at hotmail dot de
  Target Milestone: ---

gcc 12 fails to compile the following code (tested 12.1 and trunk). Tried with
c++17 and c++20.

template <class T> struct Func {
  static auto apply() {}
};

template <class T>
struct A {
    T x;
};

template <class T>
A(T) -> A<T>;

int main() {
    A a{Func<double>::apply};
}

with an error of

error: 'A<auto (*)()> a' has incomplete type

The code compiles fine with gcc 11, 10, and 9 as well as clang and MSCV.

Changing static auto apply() {} to static void apply() {} or any other concrete
return type (and proper return statement) makes the code compiles.

Also, specifying the template argument of A in main makes it compile.

https://godbolt.org/z/c9cGnGEPq

             reply	other threads:[~2022-05-24  9:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-24  9:30 j-l.wynen at hotmail dot de [this message]
2022-05-24 10:14 ` [Bug c++/105716] [12/13 Regression] " rguenth at gcc dot gnu.org
2022-05-24 13:34 ` ppalka at gcc dot gnu.org
2022-05-25 17:08 ` jason at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-105716-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).