view gcc/testsuite/g++.dg/overload/pmf2.C @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/561

class A { };

struct B : public A
{
  void foo ();
  void foo (int);
  template <class T>
  void bar (T);
  template <class T>
  void bar (T, T);
};

int main ()
{
  void (A::*f1)() = (void (A::*)()) &B::foo;
  void (A::*f2)(int) = (void (A::*)(int)) &B::bar;
  void (A::*f3)(int) = (void (A::*)(int)) &B::bar<int>;
}