Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb41.C
blob: 9f6ee5f43e0e4adcda0097564ea9e12a3afd24f1 [
file
] [
log
] [
blame
]
// { dg-do run }
#include
<iostream>
#include
<iterator>
#include
<string>
std
::
ostream_iterator
<
std
::
string
>
oo
(
std
::
cout
);
int
main
()
{
*
oo
=
"Hello, "
;
++
oo
;
*
oo
=
"world!\n"
;
}