public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "johelegp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/83258] Rejecting function pointer non-type template parameter without linkage
Date: Sat, 13 Mar 2021 21:51:22 +0000	[thread overview]
Message-ID: <bug-83258-4-UDOBMuhacV@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-83258-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #10 from Johel Ernesto Guerrero Peña <johelegp at gmail dot com> ---
Another workaround, extended from Bug 92320's example. See
https://godbolt.org/z/69onWf.
You can wrap the closure object in a template function which itself invokes the
closure object and converts to a function pointer that GCC accepts.
```C++
template<auto V>
void templ() {}

void dummy(){}

template<auto F>
void fn(){F();}

void foo() {
    constexpr int a = 7 + 3;
    templ<a>();

    templ<dummy>();

    typedef void(FPtr)();
    constexpr FPtr * b = &dummy;
    templ<b>();

    constexpr auto l = []{};
    constexpr void (*d)()=fn<l>;
    templ<d>();

    constexpr FPtr * c = [](){};
    templ<c>();
}

```

  parent reply	other threads:[~2021-03-13 21:51 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-83258-4@http.gcc.gnu.org/bugzilla/>
2020-03-17 18:17 ` herring at lanl dot gov
2020-08-26 15:51 ` ma.noack.pr at gmail dot com
2021-03-13 19:44 ` johelegp at gmail dot com
2021-03-13 21:51 ` johelegp at gmail dot com [this message]
2021-12-04  1:01 ` pinskia at gcc dot gnu.org
2021-12-20  4:10 ` egallager at gcc dot gnu.org
2023-05-11 14:05 ` cvs-commit at gcc dot gnu.org
2023-05-11 14:25 ` ppalka at gcc dot gnu.org
2023-05-12 12:38 ` cvs-commit at gcc dot gnu.org
2023-05-12 15:08 ` cvs-commit at gcc dot gnu.org
2023-05-12 15:08 ` cvs-commit at gcc dot gnu.org
2023-05-12 15:25 ` ppalka 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-83258-4-UDOBMuhacV@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).