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