X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Fcrash40.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.other%2Fcrash40.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=3af3f731a66a0d5fe127aa666f6bc8b36d52c2fd;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash40.C b/gcc/testsuite/g++.old-deja/g++.other/crash40.C deleted file mode 100644 index 3af3f731..00000000 --- a/gcc/testsuite/g++.old-deja/g++.other/crash40.C +++ /dev/null @@ -1,19 +0,0 @@ -// Build don't link: -// Copyright (C) 2001 Free Software Foundation, Inc. -// Contributed by Nathan Sidwell 11 April 2001 -// Origin: Theo Papadopoulo - -// Bug 1917. We were considering thunks to clones to be clones. and -// hence getting confused. - -struct A { virtual ~A(); }; -struct B { virtual ~B(); }; - -struct C: public A,B {}; - -template -inline TYPE -sqr(const TYPE& x) { - return 1; -} -int f(const int t) { return sqr(t); }