X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Fttp41.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Fttp41.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=f206c03c29184a8d859f8c9c7c4054c3147be30d;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.pt/ttp41.C b/gcc/testsuite/g++.old-deja/g++.pt/ttp41.C deleted file mode 100644 index f206c03c..00000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/ttp41.C +++ /dev/null @@ -1,23 +0,0 @@ -template class D,class E> class C -{ - public: - int g() { return 1; } -}; - -template class D -{ - public: - int f(); -}; - -template int D::f() -{ - C c; - return c.g(); -} - -int main() -{ - D d; - d.f(); -}