mirror of
https://github.com/reactos/CMake.git
synced 2024-11-23 19:49:51 +00:00
12 lines
155 B
C++
12 lines
155 B
C++
#include <sstream>
|
|
int main(int, char*[])
|
|
{
|
|
std::ostringstream os;
|
|
os << "12345";
|
|
if(os.str().size() == 5)
|
|
{
|
|
return 0;
|
|
}
|
|
return -1;
|
|
}
|