repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
predicate aware uninitialized analysis
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
mutable1.C
blob
f3ac2e4a9d6f53958b853801d91a4c7f6b484088
1
// PR c++/16518
2
3
struct foo {
4
void bar() const { m1=1; m2=1;}
5
mutable int m1,m2;
6
};
7