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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
bitfield1.C
blob
9484cb784ed5f7f8f361aa8fe7542c7e99fb34d5
1
// PR c++/50280
2
3
struct S { int bf : 3; };
4
5
template<class _T1>
6
void make_pair(_T1& __x) {}
7
8
void foo() {
9
const S s = S();
10
make_pair(s.bf);
11
}