aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit73.C
blob: 1dd0f69ab22de8ec1bdc099ad0053164988d7a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link:

// by Alexandre Oliva <oliva@dcc.unicamp.br>

// According to [temp.expl.spec]/2, a template explicit specialization
// must be declared in the namespace that contains the declaration of
// the template

namespace N {
  template <class T> class foo;	// ERROR - referenced below
}

using namespace N;

template <> class foo<void>; // ERROR - invalid specialization