aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/null1.C
blob: ca1efff480f87ac8983b236fc8acd7d09f426506 (plain)
1
2
3
4
5
6
7
8
// Test for overloading with g++ NULL.

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