aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp46.C
blob: e841ae899c59af4f614c9bdabe8e618d0a6c06c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Build don't run:
// GROUPS passed templates membertemplates
template<class T, class U>
class A
{
};

template<class U>
class A<float, U>
{
public:
  template <class V>
  void func(V v1 = 0) {}
};

main()
{
  A<float, int> a;
  a.func("abc");
}