X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.brendan%2Foverload10.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.brendan%2Foverload10.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=e28d6ea805dc08f54c6eb4c7e028577f472c6907;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git 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 e28d6ea8..00000000 --- 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); -}