aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net43.C
blob: c2c789325d674cd4f3cebfeaf19ffc103234f324 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:

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

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