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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wparentheses-28.C
blob
f6636cbc6b84bbb065f469932b55190823f15a36
1
// PR bootstrap/68361
2
// { dg-options -Wparentheses }
3
4
struct A
5
{
6
int p: 2;
7
};
8
9
A a, b;
10
11
int main()
12
{
13
bool t = (a.p = b.p);
14
}