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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
bitfld1.C
blob
471032173c8eb24a95bb5ee176bfeaf220aa1f54
1
// { dg-do assemble }
2
// Based on a bug report by Stephen Vavasis <vavasis@CS.Cornell.EDU>
3
4
// declares template operator!=
5
#include <utility>
6
7
struct foo {
8
enum e { bar } baz:1;
9
void test() {
10
baz != bar;
11
}
12
};