<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/64547>64547</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            detect `readability-container-size-empty` for `std::literals::string{_view}_literals`
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            new issue
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          firewave
      </td>
    </tr>
</table>

<pre>
    ```cpp
#include <string>
#include <string_view>

using namespace std::string_literals;
using namespace std::string_view_literals;

bool f4(const std::string& s)
{
 return s == ""s;
}

bool f5(const std::string& s)
{
 return s == ""sv;
}
```
https://godbolt.org/z/G6MqssfcK
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJysktGumzAMhp_G3EStUgcCXHDRjrGLac8whcTQTClhSWjV8_QTbbcenbNJuzgSMkL25x_bv4rRjhNRA8UBijZTSzr60Aw20EWdKeu9uTYg-f3R8wy8Bb4HFHbSbjHEQHyKKdhpBPH538nvZ0uXZ8UtLtFOI5vUieKsNLGYDIg9iP0DcTZRUC6COPwfsGq8p-6x996xIQestJ9iessCShYB6wdSPlgWKC1hYpGBaEG0DBAB8VXzsn2vUnyQyvkvMr9Pcf88pjTHVQE7wG70pvcubX0YAbsXwO6L_PYzxkF_zUwjTC1qlVGzk_WuEOWuEtmxMUb2A-qhFnXVV0bLXnFVmp2UeVXURmS2QY6CV7xCgRLFVuem4LiTdYW54rKAnNNJWbd17nxatTMb40KNzIu8zJzqycWbvRAnurBbch2waLPQrMymX8YIOXc2pvjskmxy1BhKpBMDyQMpo3rrbLputJ-SshOFTbQvtKHTnK4gORt8WEv_rP1phldHKA93N5bt0yySZ0twzZt92nRc-q32J8Bu_a_HazMH_4N0Auxu00TA7jbtrwAAAP__5LX_CA">