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;
}