blob: 6bbfe7e473661ad8b260c58935851f7c38b1c87f [file] [log] [blame]
// { dg-do run }
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}