repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
volatile1.C
blob
5b1050f9a1c0409725fbd25e01a9ce574036f1e5
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 "will not be accessed" }
12
}