OSDN Git Service

2003-01-08 Larin Hennessey <larin@science.oregonstate.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / sibcall1.C
1 // Special g++ Options: -O2
2
3 #include <iostream>
4
5 std::ostream& foo (char *x, std::ostream &y)
6 {
7   return y << "" << x;
8 }
9
10 int main ()
11 {
12   foo ("", std::cout);
13 }