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

struct A {
  typedef int X;
  template <int> X m_fn1() const;
};
template <typename> struct is_function {};
is_function<int() const &> i;
struct D {
  template <typename Y, typename = is_function<Y>> D(Y);
} b(&A::m_fn1<0>);