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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr57499.C
blob
fd985a199b84336d9f4becc2d56d697a3d2ad1d4
1
// PR middle-end/57499
2
// { dg-do compile }
3
4
struct S
5
{
6
~S () __attribute__ ((noreturn)) {} // { dg-warning "function does return" }
7
};
8
9
void
10
foo ()
11
{
12
S s;
13
throw 1;
14
}