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 c++/85462
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
expr
/
bitfield3.C
blob
3f30337c2dbb0d6d7e72d4db2d216fd4f5d4c28e
1
// PR c++/30274
2
3
struct S {
4
bool x : 4;
5
};
6
7
S s;
8
9
void f() {
10
s.x--; // { dg-error "use of an operand of type .bool." }
11
--s.x; // { dg-error "use of an operand of type .bool." }
12
}