FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / arg5.C
blob9c3c81cec90d16142b5263ad96cd67bcfe92c6ee
1 // Build don't link: 
2 // GROUPS passed arg-matching
3 extern double pow(double,int*);
5 extern "C" {
6   extern int printf (const char *, ...);
7   extern double pow(double, double);
10 int main()
12         if (pow (2.0, 3.0) != 8.0)
13           { printf ("FAIL\n"); return 1; }
14         else
15           printf ("PASS\n");