The following program reports an internal compiler error: Segmentation fault To quickly reproduce: https://gcc.godbolt.org/z/T6E8Tb7ff ``` #include <string_view> #include <iostream> int main() { using namespace std::literals; int x = 0; static_assert(std::is_void_v<std::decay_t<decltype(x)>>, "Cannot process pair."s); return 0; } ``` Removing the operator""s removes the internal compiler error.
Seems fixed recently: https://gcc.godbolt.org/z/zTWoT4rsY
Indeed. *** This bug has been marked as a duplicate of bug 105300 ***
(In reply to Jakub Jelinek from comment #2) > Indeed. > > *** This bug has been marked as a duplicate of bug 105300 *** Thanks for the pointers and sorry for the confusion, will check against trunk next time for any bug reports.