blob: eb304ba44808cdba9570aef9ff85a916bc9254ed [file] [log] [blame]
// PR c++/51313
// { dg-do compile { target c++11 } }
class ostream;
extern "C" {
extern int isdigit (int);
}
ostream&
operator<<(ostream&, const unsigned char*);
extern ostream cout;
int main()
{
cout << isdigit(0);
}