Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
volatile1.C
blob: ac9dd4df35418f8b53a5b44cd317f5e4408f596d [
file
] [
log
] [
blame
]
// PR c++/26577
struct
A
{
A
(
const
A
&);
A
&
operator
=(
const
A
&);
void
baz
()
volatile
;
};
void
A
::
baz
()
volatile
{
*
this
;
// { dg-warning "indirection will not access" }
}