aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/deduct1.C
blob: a87b2a7566eb854ca0adf012c577a1d124bd9838 (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
25
26
27
// Build don't link:

template<class CoordinateSystem, class MeshTag>
struct Mesh { };

struct RectGrid { };

struct RectMesh { };

struct Cartesian { };

template<class CS>
struct Mesh<CS, RectGrid> { };

template<class CS>
struct Mesh<CS, RectMesh> : public Mesh<CS, RectGrid> { };

template<class CS>
void foo(const Mesh<CS, RectGrid> &)
{
}

int main()
{
  Mesh<Cartesian, RectMesh> m;
  foo(m);
}