aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb41.C
blob: 3c97e01844e3ef99e7330d94e50a2bf5452ff370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream.h>
#include <iterator.h>
#include <string>

ostream_iterator<string> oo(cout);

int main()
{
    *oo = "Hello, ";
    ++oo;
    *oo = "world!\n";
}