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-24.C
blob
4019d3d828620cfe0b9b24b9103763aa7ac96c16
1
// { dg-do compile }
2
// { dg-options "-Wparentheses" }
3
4
extern int foo (int);
5
6
bool a, b, c;
7
8
bool
9
bar ()
10
{
11
c = a = b;
12
foo (0);
13
return a = b;
14
}