OSDN Git Service

* g++.old-deja/g++.mike/eh33.C: Remove xfail for hppa*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb39.C
1 // Build don't link: 
2 #include <cctype>
3 #include <iostream>
4 #include <sstream>
5 #include <cstring>
6
7 using namespace std;
8
9 extern bool foo2 (ostream &out, istream &in);
10
11 bool
12 foo1 (ostream &out, const char *in)
13 {
14   string tmp(in, std::strlen(in));
15   stringbuf sb (tmp);
16   istream fmt (&sb);
17   return foo2 (out, fmt);
18 }