2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / net11.C
blobc9eeec134cf979e9242a6232f347bc82e0e72229
1 // { dg-do assemble  }
2 // { dg-options "-pedantic-errors" }
4 struct Foo {
5   char *p;
6   const char *q;
7   void m() const;
8 };
10 void other(char &x);
12 void
13 Foo::m() const
15     other(*p);          // this is legal