Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
ctor12.C
blob: 7c1aab7255cbb4cc967285ffb36d60fc3279911e [
file
] [
log
] [
blame
]
// PR c++/78689 - ICE on constructor with label
struct
e
{
e
()
{
goto
aj
;
if
(
0
)
aj
:;
}
};
void
f
()
{
struct
e x
;
}