blob: 2030796a126bb352e7935fef29dd4fed09bd656f [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);
void
Foo::m() const
{
other(*p); // this is legal
}