public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/109083] New: Incorrect static_assert shown in diagnostics
@ 2023-03-09 19:23 markus-t314 at gmx dot de
  2023-03-09 19:37 ` [Bug c++/109083] [10/11/12/13 Regression] " pinskia at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: markus-t314 at gmx dot de @ 2023-03-09 19:23 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109083
           Summary: Incorrect static_assert shown in diagnostics
           Product: gcc
           Version: 12.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: markus-t314 at gmx dot de
  Target Milestone: ---

Code:

#include <type_traits>

template<typename T>
void unused_function()
{
    static_assert(std::is_member_function_pointer<decltype(&T::foo)>::value,
"Line 6");
}

template<typename T>
void fail_here()
{
    static_assert(std::is_member_function_pointer<decltype(&T::foo)>::value,
"Line 12");
}

int main()
{
    fail_here<int>();
}



This fails correctly, but the wrong static assertion is given in diagnostics:

main.cpp: In instantiation of ‘void fail_here() [with T = int]’:
main.cpp:17:19:   required from here
main.cpp:6:60: error: ‘foo’ is not a member of ‘int’
    6 |    
static_assert(std::is_member_function_pointer<decltype(&T::foo)>::value, "Line
6");
      |


https://godbolt.org/z/6Yrc9x6Ws


Might be related to bug 66968

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

end of thread, other threads:[~2024-05-21  9:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-09 19:23 [Bug c++/109083] New: Incorrect static_assert shown in diagnostics markus-t314 at gmx dot de
2023-03-09 19:37 ` [Bug c++/109083] [10/11/12/13 Regression] " pinskia at gcc dot gnu.org
2023-03-15 10:49 ` jakub at gcc dot gnu.org
2023-03-15 11:40 ` jakub at gcc dot gnu.org
2023-03-15 14:29 ` rguenth at gcc dot gnu.org
2023-03-15 14:33 ` jakub at gcc dot gnu.org
2023-03-15 17:42 ` jason at gcc dot gnu.org
2023-03-27  8:11 ` rguenth at gcc dot gnu.org
2023-04-26  6:58 ` [Bug c++/109083] [10/11/12/13/14 " rguenth at gcc dot gnu.org
2023-07-27  9:25 ` [Bug c++/109083] [11/12/13/14 " rguenth at gcc dot gnu.org
2024-05-21  9:14 ` [Bug c++/109083] [11/12/13/14/15 " jakub 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).