null1.C   [plain text]


// Test for overloading with g++ NULL.

void f (int *) { }
void f (char, char);
int main ()
{
  f (__null);
}