summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/overload10.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/overload10.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/overload10.C25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/overload10.C b/gcc/testsuite/g++.old-deja/g++.brendan/overload10.C
deleted file mode 100644
index e28d6ea805d..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/overload10.C
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-// GROUPS passed overloading
-class Bed {
- public:
- static void bed_func(
- int (*f)(int &, int, int));
-};
-class g_func {
-public:
- static int save_status;
-
- // in compute_harshness, we should be using comptypes, not ==, to
- // check if this is equivalent to the previous decl; the only
- // difference is the default arg
- static int rpt_func(int &status, int expand,
- int restore_cursor=1 );
-};
-
-int main (int argc,
- char **argv,
- char **envp)
-{
- Bed::bed_func(g_func::rpt_func);
- return(1);
-}