aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net43.C
blob: 234295fed67bd5e6296a371de17bb6219ea0296b (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do assemble  }

class foo {
 public:
   friend int operator ^(const foo&, const foo&);
};

int main ()
{
   int (*funptr) (const foo &, const foo &)  = operator ^;
}