aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename22.C
blob: 86a82df65cb08059e078fad9312c3a2c47815fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
struct S {
  template <class U>
  struct I { 
    typedef U X;

    X f();
  };
};


template <class T>
template <class U>
typename S<T>::I<U>::X S<T>::I<U>::f() {}