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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
comp-goto-5.c
blob
d487729a5d4bd7020d29f53a3a1a6e2788dd87e3
1
/* PR c/32122 */
2
/* { dg-do compile } */
3
/* { dg-options "" } */
4
5
enum
{
a
=
1
};
6
void
foo
()
7
{
8
goto
*
9
a
;
/* { dg-error "computed goto must be pointer type" } */
10
}
11