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
/
other
/
pr71728.C
blob
b70e3c2f4575bc5c871bf1cafdf63b75c003fd8a
1
// PR c++/71728
2
// { dg-do compile }
3
// { dg-options "-std=gnu++14 -Wall" }
4
5
int
6
foo ()
7
{
8
if (({ goto test; test: 1; }) != 1)
9
return 1;
10
return 2;
11
}