view gcc/testsuite/g++.dg/cpp0x/ref-qual16.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// 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>);