public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "thomaspkhealy at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/115430] New: Cannot take address of template function
Date: Tue, 11 Jun 2024 09:27:35 +0000	[thread overview]
Message-ID: <bug-115430-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 115430
           Summary: Cannot take address of template function
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thomaspkhealy at yahoo dot com
  Target Milestone: ---

template<typename... Params>
    constexpr int Func(Params&&...)
    {
        return 0;
    }

    int main(void)
    {
        constexpr auto fp1 = &Func<int,double,float>;              // compiles
        constexpr auto fp2 = (nullptr, &Func<int,double,float>);   // doesn't
compile
    }

The above program compiles without failure on LLVM clang, Microsoft Visual C++
and Intel ICX. But GNU g++ fail to compile it:

    <source>: In function 'int main()':
    <source>:10:36: error: no context to resolve type of '& Func<int, double,
float>'
      10 |    constexpr auto fp2 = (nullptr, &Func<int,double,float>);  //
doesn't compile

             reply	other threads:[~2024-06-11  9:27 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-11  9:27 thomaspkhealy at yahoo dot com [this message]
2024-06-11 15:22 ` [Bug c++/115430] " pinskia at gcc dot gnu.org
2024-06-11 15:31 ` pinskia at gcc dot gnu.org
2024-06-25 21:33 ` mpolacek at gcc dot gnu.org
2024-07-01 19:08 ` cvs-commit at gcc dot gnu.org
2024-07-01 19:09 ` mpolacek 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-115430-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).