Fix typo in test case
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / sibcall1.C
blob99a1dc176e4921090a148043dc5360b08e210659
1 // Special g++ Options: -O2
3 #include <iostream.h>
5 ostream& foo (char *x, ostream &y)
7   return y << "" << x;
10 int main ()
12   foo ("", cout);