blob: c9eeec134cf979e9242a6232f347bc82e0e72229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// { dg-do assemble }
// { dg-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
}
|