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
PR testsuite/86649
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
expr
/
bitfield7.C
blob
d274e3e98b9e96d68f35ea4c393f2155a419d15d
1
// PR c++/31273
2
3
enum E { e };
4
struct S {
5
E v:5;
6
};
7
S s;
8
int main() { if (!s.v) return 0; }