[lang-ref] ( assign_empty_string ) ( cpp )

TEST(StringInit, AssignEmptyString) {
	// ""
	std::string s = "";
    EXPECT_EQ(s, "");
}