aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/crash-9.C
blob: 0953fcbc46b9f64908e0cb7bc917bbe87a08e432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Origin: PR c++/42915
// { dg-do compile }

template <typename T>
class A
{
  template <typename U>
  class B
  {
    B foo();
  };
};
template <typename T> template <typename U>
A<T>::B<U> A<T>::B<U>::foo() {}