This came up during a review: https://github.com/llvm/llvm-project/pull/169010#discussion_r2555372077 Maybe Clang should warn when `string` and `string_view` literals operator result is unused: ```c++ ""s; L""s; ""sv; L""sv; ```