aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/arg5.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.law/arg5.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.law/arg5.C16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.law/arg5.C b/gcc/testsuite/g++.old-deja/g++.law/arg5.C
deleted file mode 100644
index 276068aa8b6..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.law/arg5.C
+++ /dev/null
@@ -1,16 +0,0 @@
-// Build don't link:
-// GROUPS passed arg-matching
-extern double pow(double,int*);
-
-extern "C" {
- extern int printf(char*,...);
- extern double pow(double, double);
-}
-
-int main()
-{
- if (pow (2.0, 3.0) != 8.0)
- printf ("FAIL\n");
- else
- printf ("PASS\n");
-}