public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110065] New: auto in template argument causes ICE, also accepts-invalid
@ 2023-05-31 18:19 stevenxia990430 at gmail dot com
  2023-05-31 21:54 ` [Bug c++/110065] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: stevenxia990430 at gmail dot com @ 2023-05-31 18:19 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110065
           Summary: auto in template argument causes ICE, also
                    accepts-invalid
           Product: gcc
           Version: 12.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: stevenxia990430 at gmail dot com
  Target Milestone: ---

The following program produces internal compiler error: Segmentation fault.
Tested on GCC-trunk

To quickly reproduce: https://gcc.godbolt.org/z/noY1qxK91
```
#include <type_traits>
#include <iostream>
auto main() -> int
{
    std::cout << std::is_scoped_enum_v<auto(&)(const int*) -> auto&>;
    return EXIT_SUCCESS;
}
```

Note, if we remove the std::cout and produce the following code:
```
#include <type_traits>
#include <iostream>
auto main() -> int
{
    std::is_scoped_enum_v<auto(&)(const int*) -> auto&>;
    return EXIT_SUCCESS;
}
```
gcc compiles without any error, however this code is rejected by Clang (tested
on Clang-trunk)

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

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

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-31 18:19 [Bug c++/110065] New: auto in template argument causes ICE, also accepts-invalid stevenxia990430 at gmail dot com
2023-05-31 21:54 ` [Bug c++/110065] " pinskia at gcc dot gnu.org
2023-05-31 21:56 ` [Bug c++/110065] [11/12/13/14 Regression] [C++20/2b] " pinskia at gcc dot gnu.org
2024-01-10 15:53 ` [Bug c++/110065] [11/12/13/14 Regression] [C++20/2b] auto return type " jamborm at gcc dot gnu.org
2024-01-11 23:28 ` mpolacek at gcc dot gnu.org
2024-01-12 13:46 ` mpolacek at gcc dot gnu.org
2024-01-12 14:05 ` rguenth at gcc dot gnu.org
2024-01-15 19:50 ` mpolacek at gcc dot gnu.org
2024-01-15 23:40 ` cvs-commit 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).