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
/
bitfield2.C
blob
f81f868a2fc28abc392c28af66f6dc6446fb3ce1
1
// PR c++/28052
2
// { dg-do compile }
3
4
struct A
5
{
6
double d : 2; // { dg-error "10:bit-field .d. with non-integral type .double." }
7
A() {}
8
~A() {}
9
};