X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Fexplicit.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.jason%2Fexplicit.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=9fcecfd81aea4bae19c64d2ce1bf9f62005f550b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.jason/explicit.C b/gcc/testsuite/g++.old-deja/g++.jason/explicit.C deleted file mode 100644 index 9fcecfd8..00000000 --- a/gcc/testsuite/g++.old-deja/g++.jason/explicit.C +++ /dev/null @@ -1,15 +0,0 @@ -// Testcase for explicit instantiation of templates. -// Build don't link: - -template -class A { - T t; -public: - void f () { } -}; - -template class A; - -template T min (T a, T b) { return (a < b ? a : b); } - -template int min (int, int);