summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/null1.C
blob: 6bbfe7e473661ad8b260c58935851f7c38b1c87f (plain)
1
2
3
4
5
6
7
8
9
// { dg-do run  }
// Test for overloading with g++ NULL.

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