repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
bitfield7.C
blob
fa13662758c2b5cb4de622f8555ddccc4463a938
1
typedef int __attribute__((warn_if_not_aligned(8))) intwna;
2
3
struct S
4
{
5
intwna : 2; // { dg-error "cannot declare bit-field" }
6
intwna i : 2; // { dg-error "10:cannot declare bit-field .i." }
7
};