summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/bound-mem-fun.C
blob: 9e699b638e36311f988ba68a062764d0cdfcd458 (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>
// Origin PR c++/38228
// { dg-do "compile" }

struct A
{
  A ();
  template<typename T> A(T);
};

struct B
{
  int foo();
};

A a = B().*(&B::foo); // { dg-error "invalid use of non-static member function" }