Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
net12.C
blob: f27dd46c81bd0a34f73aa7a15bd92dd1d8a4b164 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// { dg-options "-pedantic-errors" }
struct
Foo
{
char
*
p
;
const
char
*
q
;
void
m
()
const
;
};
void
other
(
char
&
x
);
// { dg-message "" } reference below
void
Foo
::
m
()
const
{
other
(*
q
);
// { dg-error "" } this is bad
}