aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.law/arg5.C
blob: 665c5cd4f35d881af8f005815ba59a1799a2f988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// GROUPS passed arg-matching
extern double pow(double,int*);

extern "C" {
  extern int printf (const char *, ...);
  extern double pow(double, double);
}

int main()
{
	if (pow (2.0, 3.0) != 8.0)
	  { printf ("FAIL\n"); return 1; }
	else
	  printf ("PASS\n");
}