aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/cond4.C
blob: 35416ba798fdd1a5a2c317f12a87ed2b51a6aa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/14369

struct A { };

template<class T> 
struct X : A {
   const A* bar() const
   { return this; }

   const A& foo() const;
};

template<class T>
const A& X<T>::foo() const
{
   const A* t = bar();
   return *(t ? t : throw 0);
}