aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/template6.C
blob: 324b4d22a5970d3d58b2cf92c44ffe0b4db02ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//Build don't link:
//reported by Theodore Papadopoulo (Theodore.Papadopoulo@sophia.inria.fr)

namespace A {

   namespace B {

      template <class T1,class T2>
         struct B {
               static const unsigned count = 0;
               template <class ForwardIter>
               void SetError(ForwardIter it,const T1& p1,const T2& p2) const { }
         };

      template <>
         const unsigned B<int,int>::count = 2; // ERROR - duplicate init
   }
};

int
main()
{
   unsigned kk =  A::B<int,int>::count; // ERROR - not a template: syntax error
}