aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/pr61537.C
blob: 12aaf58ef6218f38b9d00956ffb3cd327149d0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/61537
// { dg-do compile }

struct A {};

template <typename T>
struct B
{
  template <typename U>
  void f(U, struct A);
};

template <typename T>
template <typename U>
void B<T>::f(U, struct A)
{
}

int main()
{
  B<char> b;
  b.f(42, A());
}