blob: b5fbf64ddec800be0d65b0d57836e66ece25a1e5 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -pedantic-errors
struct Foo {
char *p;
const char *q;
void m() const;
};
void other(char &x); // ERROR - reference below
void
Foo::m() const
{
other(*q); // ERROR - this is bad
}