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

template<class T, class U=T>
struct V
{
  typedef T t_type;
};

template<class T>
class J
{
  typedef typename V<T>::t_type t_type; 
  const t_type& f(); // #0:
private:
  t_type b;
};

template<class T>
const typename V<T>::t_type& J<T>::f() {return b;} // #1