repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
volatile1.C
blob
ac9dd4df35418f8b53a5b44cd317f5e4408f596d
1
// PR c++/26577
2
3
struct A
4
{
5
A(const A&);
6
A& operator=(const A&);
7
void baz() volatile;
8
};
9
void A::baz() volatile
10
{
11
*this; // { dg-warning "indirection will not access" }
12
}