aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/canon-type-9.C
blob: c15f93ad7536af876556a3715106381cd4900a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Contributed by Dodji Seketeli <dodji@redhat.com>
// { dg-do compile { target c++11 } }

struct F { F(int) {}};

template<class T, T* u>
struct S
{
  decltype(u) foo(T);
};

template<class T, T *u>
decltype(u) S<T, u>::foo(T)
{
  T t;
  return t;
}