2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / net43.C
blob234295fed67bd5e6296a371de17bb6219ea0296b
1 // { dg-do assemble  }
3 class foo {
4  public:
5    friend int operator ^(const foo&, const foo&);
6 };
8 int main ()
10    int (*funptr) (const foo &, const foo &)  = operator ^;