Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
710c7ab64787e6051864a13fba31d4cfbbf8164e
/
.
/
Modules
/
TestForSSTREAM.cxx
blob: 83a75e4781d6b4c230f68e0478bae60ffa8e6daa [
file
] [
log
] [
blame
]
#include
<sstream>
int
main
(
int
,
char
*
[])
{
std
::
ostringstream os
;
os
<<
"12345"
;
if
(
os
.
str
().
size
()
==
5
)
{
return
0
;
}
return
-
1
;
}