is it possible to see all the examples somehow?
Initial soltion should #include <string>, not <iostream>.
<string>
<iostream>
testing_all_symbols Caught std::exception, what(): basic_string::_M_construct null not valid
Is this from by trying to construct a std::string with a null char * pointer?
std::string
null char * pointer
Because if so, this causes undefined behavior.
What is being tested here?
Loading collection data...
is it possible to see all the examples somehow?
Initial soltion should #include
<string>
, not<iostream>
.Is this from by trying to construct a
std::string
with anull char * pointer
?Because if so, this causes undefined behavior.
What is being tested here?