(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
sizeof1.C
// { dg-do assemble  }
// Origin: Jason Merrill <jason@cygnus.com>

struct X {
  int f ();
  int f (int);
};

void f(int i)
{
  i = sizeof(X::f); // { dg-error "" } cannot take sizeof a member function
}