summaryrefslogtreecommitdiff
path: root/Modules/TestForSSTREAM.cxx
blob: af4a4bbef9ce3920f400b3a226e7999b7c3df1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sstream>
int main(int, char*[])
{ 
  std::ostringstream os;
  os << "12345";
  if(os.str().size() == 5)
    {
    return 0;
    }
  return -1;
}