aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/decltype53.C
blob: 4580e97b7521a3beb1dd8e8b164d375354ebf073 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/57092
// { dg-do compile { target c++11 } }

template <void (*F)(int)>
class B {
  decltype(F) v;
};

void foo(int) {}

B<foo> o;