X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Ftempsub.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Ftempsub.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=4b69d888d36e6f1da7c396a7b71e03dea77e0a9c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.jason/tempsub.C b/gcc/testsuite/g++.old-deja/g++.jason/tempsub.C deleted file mode 100644 index 4b69d888..00000000 --- a/gcc/testsuite/g++.old-deja/g++.jason/tempsub.C +++ /dev/null @@ -1,28 +0,0 @@ -// Distillation of crash1.C problem (PR 3633) -// Build don't link: - -template -class A -{ - P p; -}; - -template -class B -{ - A a; // bogus error - temp parm name propagating -}; - -template -class C -{ - B b; -}; - -template -class D -{ - S s; -}; - -C< D > c;