X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2Ftest%2FFixedStringTest.cpp;h=bf3e943d9d8f5a57ef77e19b7e2a9a20f30c84ff;hp=437bd67ce82b5205f463dfeee9d5f7827d087c0a;hb=78a596f109f3eb852620ec0be655894547769555;hpb=29ffcc50981fd50dd2ab1a69f8a262c4b7c27ad4 diff --git a/folly/test/FixedStringTest.cpp b/folly/test/FixedStringTest.cpp index 437bd67c..bf3e943d 100644 --- a/folly/test/FixedStringTest.cpp +++ b/folly/test/FixedStringTest.cpp @@ -50,6 +50,7 @@ TEST(FixedStringCtorTest, Default) { TEST(FixedStringCtorTest, FromLiterals) { constexpr folly::FixedString<42> s{"hello world"}; + static_assert(s[0] == 'h', ""); constexpr folly::FixedString<11> s2{"hello world"}; static_assert(s2[0] == 'h', ""); static_assert(s2[10] == 'd', "");