public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "hewillk at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/102881] gcc totally broken when trailing return type combine with decltype lambda
Date: Thu, 21 Oct 2021 14:41:26 +0000	[thread overview]
Message-ID: <bug-102881-4-b9tIFYYMDE@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-102881-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #1 from 康桓瑋 <hewillk at gmail dot com> ---
(In reply to 康桓瑋 from comment #0)
> template<int N>
> using R = decltype([] { return 0; }());
> 
> template <int N>
> auto you_can_see_me() -> R<N> {
>   return {};
> }
> 
> int main() {
>   you_can_see_me<0>();
> }
> 
> GCC rejects with:
> 
> <source>:10:3: error: 'you_can_see_me' was not declared in this scope
>    10 |   you_can_see_me<0>();
>       |   ^~~~~~~~~~~~~~~~~
> 
> https://godbolt.org/z/7WEsjjscT

Even broken when there is no trailing return type:

#include <concepts>

template<class>
struct O {};

template<std::size_t>
using R = decltype([] { return O<int>{}; }());

template <int N>
constexpr R<N> get_variant() { return {}; }

static_assert(std::same_as<R<0>, O<int>>);
auto x = get_variant<0>();
static_assert(!std::same_as<decltype(x), O<int>>);
static_assert(std::same_as<decltype(x), int>);

https://godbolt.org/z/4bKccTEe5

  reply	other threads:[~2021-10-21 14:41 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-21 13:56 [Bug c++/102881] New: " hewillk at gmail dot com
2021-10-21 14:41 ` hewillk at gmail dot com [this message]
2021-10-22  9:07 ` [Bug c++/102881] " vanyacpp at gmail dot com
2021-12-01 22:05 ` cvs-commit at gcc dot gnu.org
2021-12-01 22:55 ` ubizjak at gmail dot com
2021-12-02 12:46 ` jakub at gcc dot gnu.org
2024-04-13  7:57 ` pinskia 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-102881-4-b9tIFYYMDE@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).