public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/115430] New: Cannot take address of template function
@ 2024-06-11  9:27 thomaspkhealy at yahoo dot com
  2024-06-11 15:22 ` [Bug c++/115430] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: thomaspkhealy at yahoo dot com @ 2024-06-11  9:27 UTC (permalink / raw)
  To: gcc-bugs

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

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

end of thread, other threads:[~2024-07-01 19:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-11  9:27 [Bug c++/115430] New: Cannot take address of template function thomaspkhealy at yahoo dot com
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

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