X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Fspec39.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.pt%2Fspec39.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=9cdf75c3d7776042ec2792f29045cc409e7fd3fc;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec39.C b/gcc/testsuite/g++.old-deja/g++.pt/spec39.C deleted file mode 100644 index 9cdf75c3..00000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/spec39.C +++ /dev/null @@ -1,43 +0,0 @@ -// Build don't link: -// -// Copyright (C) 2000 Free Software Foundation, Inc. -// Contributed by Nathan Sidwell 19 Jan 2001 - -// Bug 1656. We failed to make sure that a template-id was built -// from a primary template. - -template struct Outer -{ - struct Inner {}; - - void f() - { - Inner i; // ERROR - non-template - Inner<> j; // ERROR - non-template - } -}; -struct O {}; -void foo () -{ - Outer<1> x; - x.f (); - Outer<1>::Inner<2> z; // ERROR - non-template - O<1> w; // ERROR - non-template -} - -template class TPL> -struct X -{ - TPL t; - T s; // ERROR - non-template -}; - -template struct Y -{ -}; - -void bar () -{ - X a; - X b; // ERROR - non-template -}