summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/canon-type-9.C
blob: 4fcd5243534d047021fd7c45e4f50084ce7fdb15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Contributed by Dodji Seketeli <dodji@redhat.com>
// { dg-options "-std=c++0x" }
// { dg-do compile }

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;
}