blob: c6eadaa3dd5621b6e4f7ec4b7316f27e6dea707c [file] [log] [blame]
// Special g++ Options: -O2
#include <iostream>
std::ostream& foo (char *x, std::ostream &y)
{
return y << "" << x;
}
int main ()
{
foo ("", std::cout);
}