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
gcc: regenerate configure
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb5.C
blob
06e31b61132da79b83132777c289f31069298a39
1
// { dg-do assemble }
2
enum { a, b };
3
4
class Bug {
5
int pri:8;
6
int flags:15;
7
public:
8
void bug() {
9
flags |= a; // this does not work
10
}
11
};
12
13
void dummy(Bug x) { x.bug(); }