public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99493] New: Address of template parameter object is not a valid template argument
@ 2021-03-09 18:20 johelegp at gmail dot com
  2021-03-15  5:02 ` [Bug c++/99493] " johelegp at gmail dot com
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: johelegp at gmail dot com @ 2021-03-09 18:20 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99493
           Summary: Address of template parameter object is not a valid
                    template argument
           Product: gcc
           Version: 11.0
               URL: https://godbolt.org/z/9zYo8f
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: johelegp at gmail dot com
                CC: johelegp at gmail dot com
  Target Milestone: ---

See https://godbolt.org/z/9zYo8f.
```C++
struct owner{int m;};
struct view{const int*m;constexpr view(const owner&o):m{&o.m}{}};
template<view V>struct constant{};
template<owner O>constexpr constant<O>v{};
[[maybe_unused]] constexpr auto a=v<owner{}>;
```
https://timsong-cpp.github.io/cppwp/n4861/temp.param#8 defines template
parameter object.
https://timsong-cpp.github.io/cppwp/n4861/temp.arg.nontype#2 makes the template
parameter object a constant expression.
https://timsong-cpp.github.io/cppwp/n4861/temp.arg.nontype#3 lists
restrictions, which excludes taking the address of a template parameter object.

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

end of thread, other threads:[~2024-01-18 15:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-09 18:20 [Bug c++/99493] New: Address of template parameter object is not a valid template argument johelegp at gmail dot com
2021-03-15  5:02 ` [Bug c++/99493] " johelegp at gmail dot com
2021-03-15 18:44 ` johelegp at gmail dot com
2022-01-19  2:43 ` pinskia at gcc dot gnu.org
2022-01-19  2:46 ` pinskia at gcc dot gnu.org
2024-01-17 18:02 ` cvs-commit at gcc dot gnu.org
2024-01-18 15:53 ` cvs-commit at gcc dot gnu.org
2024-01-18 15:54 ` ppalka at gcc dot gnu.org
2024-01-18 15:55 ` johelegp at gmail dot com

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