2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb41.C
blob9f6ee5f43e0e4adcda0097564ea9e12a3afd24f1
1 // { dg-do run  }
2 #include <iostream>
3 #include <iterator>
4 #include <string>
6 std::ostream_iterator<std::string> oo(std::cout);
8 int main()
10     *oo = "Hello, ";
11     ++oo;
12     *oo = "world!\n";