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