Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
net11.C
blob: c9eeec134cf979e9242a6232f347bc82e0e72229 [
file
] [
log
] [
blame
]
// { 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
}