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

std::ostream_iterator<std::string> oo(std::cout);

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