Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr81675.C
blob: 24a7a3b067747ec888b2ffae0b949c9eeca12086 [
file
] [
log
] [
blame
]
// PR c++/81675
// { dg-do compile }
// { dg-options "-Wall" }
struct
S
{
~
S
()
__attribute__
((
noreturn
));
int
a
;
};
int
foo
()
{
false
?
5
:
S
().
a
;
}