OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ext / null1.C
1 // Test for overloading with g++ NULL.
2
3 void f (int *) { }
4 void f (char, char);
5 main ()
6 {
7   f (__null);
8 }