rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/net12.C

17 lines
252 B
C

// { dg-do assemble }
// { dg-options "-pedantic-errors" }
struct Foo {
char *p;
const char *q;
void m() const;
};
void other(char &x); // { dg-error "" } reference below
void
Foo::m() const
{
other(*q); // { dg-error "" } this is bad
}