[Bug c++/87607] Cannot use fold expression in static_assert
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87607 Håkon Høines changed: What|Removed |Added Resolution|INVALID |FIXED --- Comment #2 from Håkon Høines -
[Bug c++/87607] New: Cannot use fold expression in static_assert
++ Assignee: unassigned at gcc dot gnu.org Reporter: havhoi92 at gmail dot com Target Milestone: --- Consider the code snippet: template struct is_same { static constexpr bool value = false; }; template struct is_same { static constexpr bool value = true; }; template