Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Modules / TestForSSTREAM.cxx
1 #include <sstream>
2 int main(int, char*[])
3 {
4   std::ostringstream os;
5   os << "12345";
6   if(os.str().size() == 5)
7     {
8     return 0;
9     }
10   return -1;
11 }